I had a N2048 switch connected to our network with an IP address on a vlan with a static default route.
I made the following changes to the switch and the switch was no longer available to telnet \ ssh \https.
* Added loopback address 10.250.8.105/32 to the loopback0 interface
* Added RIPv2 routing to transmit the loopback interface's address
* RIPv2 from network delivers the route 0.0.0.0/0 to the switch.
After the changes:
* Cannot use telnet \ ssh \ https to contact the switch from routed networks
* Can use networks that are directly connected to the switch to connect.
* AAA no longer works
* Switch is pingable via the loopback and the vlan interface
* SNMP (UDP) works fine with the switch
* Syslog based logging still work from the router
I have other N-Series (N3048 and N2048) that is showing the same issues and I have some that actually work fine (all the working are N3000). This the first N2000 that I have converted to RIP
It feels like the system is not using the routing table or that the TCP connection is not completing due to some stateful connection checking out differing interfaces.
Routing Table:
Default Gateway is 10.8.0.20
R *0.0.0.0/0 [120/2] via 10.8.0.20, Vl100
S 0.0.0.0/0 [250/0] via 10.8.0.10, Vl100
C *10.8.0.0/24 [0/1] directly connected, Vl100
C *10.250.8.105/32 [0/1] directly connected, Lo0
Switch Configuration:
* Version 6.1.1.7
!Current Configuration:
!System Description "Dell Networking N2048, 6.1.1.7, Linux 3.6.5-601418a5"
!System Software Version 6.1.1.7
!
configure
vlan 100
name "100_INF_Network-OSPF"
exit
vlan 101
name "101_INF_Network-Static"
exit
<<<<CUT>>>>>
vlan 888
name "test"
exit
vlan 100-104,106-107,120-122,130-131,200-201,203,215-216,300,307-309,320-322
vlan 500-504
vlan 888
exit
snmp-server location "IDF2 White Stack"
snmp-server contact "Jeff Madrazo"
hostname "netcalswtds06"
slot 1/0 5 ! Dell Networking N2048
slot 2/0 9 ! Dell Networking N2048P
slot 3/0 9 ! Dell Networking N2048P
sntp server 10.40.50.20
sntp server 10.40.50.21 priority 2
clock summer-time recurring USA
clock timezone -8 minutes 0
stack
member 1 8 ! N2048
member 2 9 ! N2048P
member 3 9 ! N2048P
exit
ip domain-name "XXXXXXX.net"
ip name-server "10.40.50.20"
logging 10.40.50.51
exit
boot auto-copy-sw
ip access-list CONNECTED_RIP
permit ip 10.250.0.0 0.0.255.255 any
exit
ip routing
ip route 0.0.0.0 0.0.0.0 10.8.0.10 250
router rip
redistribute connected
distribute-list CONNECTED_RIP out connected
exit
interface vlan 1
ip address dhcp
exit
interface vlan 100
ip address 10.8.0.105 255.255.255.0
ip rip
ip rip receive version rip2
exit
interface vlan 101
exit
interface vlan 300
exit
no passwords min-length
username "admin" password XXXXXXXXXXXXXXXXXXXXXXXXXXX privilege 15 encrypted
aaa authentication login "Management" radius local
aaa authentication login "Console" local
aaa authentication enable "Management" none
aaa authentication enable "Console" none
aaa authorization exec "Management" radius local
aaa authorization exec "Console" local
radius-server source-ip 10.250.8.105
radius-server host auth 10.40.50.20
name "Default-RADIUS-Server"
deadtime 1
key "XXXXXX"
exit
line console
login authentication Console
enable authentication Console
authorization exec Console
exit
line telnet
login authentication Management
enable authentication Management
authorization exec Management
exit
line ssh
login authentication Management
enable authentication Management
exit
!
interface Gi1/0/1
description "IDF2_White_Placeholder"
spanning-tree portfast
switchport access vlan 300
exit
<<<<<CUT>>>>>
interface Gi3/0/48
description "IDF2_White_Placeholder"
spanning-tree portfast
switchport access vlan 300
exit
!
interface loopback 0
ip address 10.250.8.105 255.255.255.255
exit
snmp-server engineid local 800002a203f8b1564ba500
snmp-server community "XXXXXXXXX" ro
exit