Link to home
Start Free TrialLog in
Avatar of Evolutionzz
Evolutionzz

asked on

Switching Issue

How can a vlan be in a down down state?



also, the vlan subnet is not showing up in the show ip route command.  Any ideals?


Switch config

interface Vlan2
 description users
 ip address 10.107.203.129 255.255.255.128
 ip helper-address 10.106.173.10
!
!
router eigrp 1
 network 10.106.158.112 0.0.0.3
 network 10.107.203.128 0.0.0.127
 redistribute connected
 eigrp stub connected summary



sho ip route output

Codes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route, H - NHRP, l - LISP
       + - replicated route, % - next hop override

Gateway of last resort is 10.106.158.114 to network 0.0.0.0

S*    0.0.0.0/0 [1/0] via 10.106.158.114
      10.0.0.0/8 is variably subnetted, 373 subnets, 10 masks
D EX     10.16.8.0/22
           [170/284160] via 10.106.158.114, 04:54:25, GigabitEthernet1/0/1
D EX     10.16.11.0/24
           [170/284160] via 10.106.158.114, 04:54:25, GigabitEthernet1/0/1
D EX     10.104.128.0/24
           [170/284160] via 10.106.158.114, 04:54:25, GigabitEthernet1/0/1
D EX     10.104.130.0/24
           [170/284160] via 10.106.158.114, 04:54:25, GigabitEthernet1/0/1
D EX     10.104.132.0/24
           [170/284160] via 10.106.158.114, 04:54:26, GigabitEthernet1/0/1
D EX     10.104.134.0/24

Show ip int brief output

sh ip int brie
Interface              IP-Address      OK? Method Status                Protocol

Vlan1                  unassigned      YES NVRAM  administratively down down

Vlan2                  10.107.203.129  YES manual down                  down

GigabitEthernet0/0     unassigned      YES unset  down                  down

GigabitEthernet1/0/1   10.106.158.113  YES NVRAM  up                    up
Avatar of gt2847c
gt2847c
Flag of United States of America image

Did you create the vlan on the switch, or just create the interface?

do:
show vlan brief

Open in new window

and see if Vlan2 shows up.

If not, you need to create (name) the vlan:

#config t
(config)#vlan 2
(config-vlan)#name myvlan
(config-vlan)#end
#

Open in new window


That will create the vlan and should allow the interface to up/up.
Avatar of Evolutionzz
Evolutionzz

ASKER

I got the int partially up.  Why is the method TFTP?  Shouldn't it be NVRAM?  And the subnet is still not showing up in the routing table.

Show ip int brief output

sho ip int brief
Interface              IP-Address      OK? Method Status                Protocol

Vlan1                  unassigned      YES TFTP   administratively down down

Vlan2                  10.107.203.129  YES TFTP   up                    down

GigabitEthernet0/0     unassigned      YES unset  down                  down

GigabitEthernet1/0/1   10.106.158.113  YES NVRAM  up                    up





sho vlan

VLAN Name                             Status    Ports
---- -------------------------------- --------- -------------------------------
1    default                          active
2    users                            active    Gi1/0/2, Gi1/0/3, Gi1/0/4
                                                Gi1/0/5, Gi1/0/6, Gi1/0/7
                                                Gi1/0/8, Gi1/0/9, Gi1/0/10
                                                Gi1/0/11, Gi1/0/12, Gi1/0/13
                                                Gi1/0/14, Gi1/0/15, Gi1/0/16
                                                Gi1/0/17, Gi1/0/18, Gi1/0/19
                                                Gi1/0/20, Gi1/0/21, Gi1/0/22
                                                Gi1/0/23, Gi1/0/24, Gi1/0/25
                                                Gi1/0/26, Gi1/0/27, Gi1/0/28
                                                Gi1/0/29, Gi1/0/30, Gi1/0/31
                                                Gi1/0/32, Gi1/0/33, Gi1/0/34
                                                Gi1/0/35, Gi1/0/36, Gi1/0/37
                                                Gi1/0/38, Gi1/0/39, Gi1/0/40
                                                Gi1/0/41, Gi1/0/42, Gi1/0/43
                                                Gi1/0/44, Gi1/0/45, Gi1/0/46
                                                Gi1/0/47, Gi1/0/48
ASKER CERTIFIED SOLUTION
Avatar of gt2847c
gt2847c
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Did that already.