2 weeks ago
Trying to get a static route on one of my edge devices. The VLAN is 90 and the IP for the route is directly connected.
Switch: 10.1.90.1, Firewall: 10.1.90.2
I can ping it:
beb3:1#ping 10.1.90.2
Sending ping in context grt
10.1.90.2 is alive
beb3:1#sh ip interface | inc 10.1.90
************************************************************************************
Command Execution Time: Sat Dec 07 15:49:24 2024 UTC
************************************************************************************
Vlan90 10.1.90.1 255.255.255.0 enable up 90 false disable
beb3:1(config)#ip route 0.0.0.0 0.0.0.0 10.1.90.2 enable
Error: Cannot find route
What could be the issue?
a week ago
The command to create the static route must include the "weight" argument.
The first command you did is simply trying to enable an already created static route.
2 weeks ago
Had to add the weight to it, then it took.