05-04-2024 11:14 AM
There is two part of the question here.
As I asked before, if it was possible to use an ordinary USB flash drive. I couldn't get it to work. I formatted it FAT32 with a partition under 2GB.
sw0# usb on
Trying to enable USB device. Please wait...
Fail to enable USB storage device. Error:Device is not found or not formatted
so I decided to try sending over the FTP server... then I realize that I don't have any routes on the default-vrf, only the mgmt-vrf:
sw0# ping 1.1.1.1 vrf mgmt-vrf count 5
Type Control-c to abort
PING 1.1.1.1 (1.1.1.1): 56 data bytes
64 bytes from 1.1.1.1: icmp_seq=0 ttl=54 time=12.861 ms
64 bytes from 1.1.1.1: icmp_seq=1 ttl=54 time=12.698 ms
64 bytes from 1.1.1.1: icmp_seq=2 ttl=54 time=17.645 ms
64 bytes from 1.1.1.1: icmp_seq=3 ttl=54 time=14.249 ms
64 bytes from 1.1.1.1: icmp_seq=4 ttl=54 time=13.386 ms
--- 1.1.1.1 ping statistics ---
5 packets transmitted, 5 packets received, 0% packet loss
round-trip min/avg/max/stddev = 12.698/14.168/17.645/1.821 ms
sw0# ping 1.1.1.1 count 5
Type Control-c to abort
PING 1.1.1.1 (1.1.1.1): 56 data bytes
ping: sendto: Network is unreachable
ping: sendto: Network is unreachable
ping: sendto: Network is unreachable
ping: sendto: Network is unreachable
ping: sendto: Network is unreachable
^C--- 1.1.1.1 ping statistics ---
5 packets transmitted, 0 packets received, 100% packet loss
Since I am using the switch as a layer 2, what is the best way to get it routable?
sw0(config-rbridge-id-1)# ip route 0.0.0.0/0 next-hop-vrf mgmt-vrf 10.0.254.1
%% Error: Leaked routes from multiple VRFs cannot form ECMP
Solved! Go to Solution.
05-06-2024 06:02 AM
The VDX is a Linux system so it does not recognize FAT32. Try EXT2
https://extreme-networks.my.site.com/ExtrArticleDetail?an=000082941
If you want to use FTP, rather than messing with the routing, why not just use your mgmt-vrf?
VDX1# copy running-config ftp://1.1.1.1 ?
Possible completions:
use-vrf Valid Vrf Name
| Output modifiers
<cr>
VDX1# copy running-config ftp://1.1.1.1 use-vrf mgmt-vrf
05-06-2024 07:18 AM
If you are using the default-vrf, you can enter the following to configure the gateway for it.
VDX# conf t Entering configuration mode terminal VDX(config)# rb 1 VDX(config-rbridge-id-1)# ip route 0.0.0.0/0 10.0.254.1 VDX# sh run rb ip rbridge-id 1 ip route 0.0.0.0/0 10.0.254.1
sw0(config)# do sh run rb ip
rbridge-id 1
ip route 0.0.0.0/0 10.0.254.1
!
sw0(config)# do ping 1.1.1.1
Type Control-c to abort
PING 1.1.1.1 (1.1.1.1): 56 data bytes
ping: sendto: Network is unreachable
ping: sendto: Network is unreachable
ping: sendto: Network is unreachable
^C^C--- 1.1.1.1 ping statistics ---
3 packets transmitted, 0 packets received, 100% packet loss