

An SVI (Switch Virtual Interface) is a logical Layer 3 interface on a switch, associated with a specific Group (VLAN). It allows the switch to route IP packets between groups, enabling inter-group (inter-VLAN) unicast routing.
When IP routing is enabled, the switch uses SVIs to serve as gateways for devices within each group. Each SVI is assigned:
A VLAN ID (e.g., 200, 300). This is determined by the group configuration
An IP address. This is the configured Layer 3 IP address. This address has to be used as the default gateway by devices in that group.
| Group (VLAN) | SVI IP Address | Description |
|---|---|---|
| Group 2 (200) | 10.2.0.10/16 |
SVI for Group 2 (gateway) |
| Group 3 (300) | 10.3.0.10/16 |
SVI for Group 3 (gateway) |
| Default Gateway | 10.2.0.1 |
IP of the upstream router. Used by the switch to reach external networks |
Device A in Group 2, IP: 10.2.0.20/16, Gateway: 10.2.0.10
Device B in Group 3, IP: 10.3.0.30/16, Gateway: 10.3.0.10
(Optional) Upstream router in Group 2, IP 10.2.0.1/16
This is the default gateway. Any traffic for which no route is known by the GigaCore, will be forwarded towards the default gateway.
When Device A wants to send a packet to Device B:
It sends the packet to its default gateway 10.2.0.10 (SVI on the switch).
The GigaCore 30i routes it to Group 3 using its SVI 10.3.0.10.
The packet is delivered to Device B.
If Device A tries to send a packet to an unknown network, like 1.1.1.1:
The switch doesn't have a direct route.
It forwards the packet to its own default gateway, 10.2.0.1, for further routing (e.g., to the internet).
Let’s examine the packet flow in detail:
Device A (Group 2) sends an IP packet to 10.3.0.30 (Device B):
Source MAC: AA-AA-AA-AA-AA-AA (Device A)
Destination MAC: BB-BB-BB-BB-BB-BB → unknown by Device A, so it's actually set to MAC of SVI 10.2.0.10, e.g., GC-02-02-02-02-02
Source IP: 10.2.0.20 (Device A)
Destination IP: 10.3.0.30 (Device B)