::
Computers & Technology
configure static route extreme switch
SpiderTip
Posted: 2015-07-08
Configuring an static route is a one line command for Extreme Network switch. You will need the route, sub-net and first router or default gateway.
To add a static route on Extreme Switch, run this command:
sw # configure iproute add 192.168.10.0/24 192.168.10.1
sw # save configuration
This above examples, adds the static network of 192.168.10.0 with the sub net mask of 255.255.255.0 and default first route of 192.168.10.1.
To remove or delete the route added above, run this command:
sw # configure iproute delete 192.168.10.0/24 192.168.10.1
Cisco equivalent command of of adding static route:
rt# conf t;
switch(config)# ip route route 192.168.10.0 255.255.255.0 192.168.10.1
switch(config)# exit
rt# sw