dslreports logo
Search similar:


uniqs
1395
krock83
join:2010-03-02

krock83

Member

[Config] Nexus MGMT IP Configuration

Hi All,

I am attempting to configure the management interface on the new Nexus platform.
here is what I got so far

 
ip domain-lookup
snmp-server user admin network-admin auth md5 0xa4f8c10f1RTYUIOOUYTTYUIOPOIUYTYUIO
 priv 0xaVHKKYUIOPOIUYUIUIO&RT*YOJ localizedkey
 
vlan 1
vrf context management
  ip route 0.0.0.0/23 10.230.6.1
 
interface mgmt0
  vrf member management
  ip address 10.230.6.15/23
line console
line vty
boot kickstart bootflash:/n6000-uk9-kickstart.7.0.1.N1.1.bin
boot system bootflash:/n6000-uk9.7.0.1.N1.1.bin
 
 

I can ping using the vrf management

switch# ping 10.230.6.1 vrf management
PING 10.230.6.1 (10.230.6.1): 56 data bytes
64 bytes from 10.230.6.1: icmp_seq=0 ttl=254 time=0.772 ms
64 bytes from 10.230.6.1: icmp_seq=1 ttl=254 time=0.556 ms
64 bytes from 10.230.6.1: icmp_seq=2 ttl=254 time=0.494 ms
64 bytes from 10.230.6.1: icmp_seq=3 ttl=254 time=0.584 ms
64 bytes from 10.230.6.1: icmp_seq=4 ttl=254 time=0.459 ms
 
--- 10.230.6.1 ping statistics ---
5 packets transmitted, 5 packets received, 0.00% packet loss
round-trip min/avg/max = 0.459/0.573/0.772 ms
switch#
 

However I cannot ping the nexus management from my remote worksation. There are other network devices on this /23 that I have access to so I know it is not an access issue, I just don't know what I am missing. I also tried telnet but that didn't fire ether.

Anything else that I miss?
Thanks in advance
aryoba
MVM
join:2002-08-22

aryoba

MVM

said by krock83:

vrf context management
  ip route 0.0.0.0/23 10.230.6.1
 
interface mgmt0
  vrf member management
  ip address 10.230.6.15/23
 

I believe the following should be in place instead :)

vrf context management
  ip route 0.0.0.0/0 10.230.6.1
 
krock83
join:2010-03-02

krock83

Member

said by aryoba:

said by krock83:

vrf context management
  ip route 0.0.0.0/23 10.230.6.1
 
interface mgmt0
  vrf member management
  ip address 10.230.6.15/23
 

I believe the following should be in place instead :)

vrf context management
  ip route 0.0.0.0/0 10.230.6.1
 

And I believe you are right... It will take me a while to get used to these bad boys

And as always I really appreciate your help.
Thanks