Any Cisco experts? Little help please

Hey,

Indeed that fixed that problem,I need to work on my network advertisements. What it still doesn't do however, is route anything across the backbone network. All data goes via router serial links :confused:
 
Code:
Cam>sh ip int br
Interface              IP-Address      OK? Method Status                Protocol
 
FastEthernet0/0        192.168.100.1   YES manual up                    up
 
FastEthernet0/1        unassigned      YES unset  up                    up
 
FastEthernet0/1.10     10.1.1.1        YES manual up                    up
 
FastEthernet0/1.20     10.1.1.129      YES manual up                    up
 
FastEthernet0/1.30     10.1.2.1        YES manual up                    up
 
Serial0/3/0            192.168.1.5     YES manual up                    up
 
Serial0/3/1            192.168.1.1     YES manual up                    up
 
Vlan1                  unassigned      YES unset  administratively down down

Code:
sal>sh ip int br
Interface              IP-Address      OK? Method Status                Protocol
 
FastEthernet0/0        192.168.100.2   YES manual up                    up
 
FastEthernet0/1        unassigned      YES unset  up                    up
 
FastEthernet0/1.70     10.1.4.1        YES manual up                    up
 
FastEthernet0/1.80     10.1.4.129      YES manual up                    up
 
FastEthernet0/1.90     10.1.5.1        YES manual up                    up
 
Serial0/3/0            192.168.1.2     YES manual up                    up
 
Serial0/3/1            192.168.1.10    YES manual up                    up
 
Vlan1                  unassigned      YES unset  administratively down down
sal>

Code:
St>sh ip int br
Interface              IP-Address      OK? Method Status                Protocol
 
FastEthernet0/0        192.168.100.3   YES manual up                    up
 
FastEthernet0/1        unassigned      YES unset  up                    up
 
FastEthernet0/1.40     10.1.2.129      YES manual up                    up
 
FastEthernet0/1.50     10.1.3.1        YES manual up                    up
 
FastEthernet0/1.60     10.1.3.129      YES manual up                    up
 
Serial0/3/0            192.168.1.6     YES manual up                    up
 
Serial0/3/1            192.168.1.9     YES manual up                    up
 
Vlan1                  unassigned      YES unset  administratively down down
St>
 
Hey,

MLS 0

Code:
Switch#show run
Building configuration...

Current configuration : 1319 bytes
!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname Switch
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
interface FastEthernet0/1
 switchport trunk native vlan 99
 switchport trunk encapsulation dot1q
 switchport mode trunk
!
interface FastEthernet0/2
 switchport trunk encapsulation dot1q
 switchport mode trunk
!
interface FastEthernet0/3
 switchport trunk encapsulation dot1q
 switchport mode trunk
!
interface FastEthernet0/24
interface GigabitEthernet0/1
interface GigabitEthernet0/2
interface Vlan1
 no ip address
 shutdown
interface Vlan99
 ip address 192.168.1.21 255.255.255.248
ip classless
line con 0
line vty 0 4
 login
end

Others are pretty much the same with slightly differing vlan 99 addresses.
 
Code:
1    default                          active    Fa0/4, Fa0/5, Fa0/6, Fa0/7
                                                Fa0/8, Fa0/9, Fa0/10, Fa0/11
                                                Fa0/12, Fa0/13, Fa0/14, Fa0/15
                                                Fa0/16, Fa0/17, Fa0/18, Fa0/19
                                                Fa0/20, Fa0/21, Fa0/22, Fa0/23
                                                Fa0/24, Gig0/1, Gig0/2
10   VlanA                            active    
20   VlanB                            active    
30   VlanC                            active    
40   VlanD                            active    
50   VlanE                            active    
60   VlanF                            active    
70   VlanG                            active    
80   VlanH                            active    
90   VlanI                            active    
99   management                       active    
1002 fddi-default                     active    
1003 token-ring-default               active    
1004 fddinet-default                  active    
1005 trnet-default                    active    
Switch>
Switch>
Switch>

The vlans are there dude, or am I missing something? :)
 
With regards to not being able to ping the switches - apply a default-router command to the switches, at the moment they dont know how to send off their network. Youll also need a subinterface on the routers in the same manner as the others on vlan99 with an ip address in their range :)

- Pea0n
 
With regards to not being able to ping the switches - apply a default-router command to the switches, at the moment they dont know how to send off their network. Youll also need a subinterface on the routers in the same manner as the others on vlan99 with an ip address in their range :)

- Pea0n

Hey,

Completely lost, sorry mate
 
Hey,

Completely lost, sorry mate

No worries - at the moment those switches dont know what do with any data that isnt on their VLAN 99 subnet, and the routers dont even know it exists

On the router you need to add a sub interface like fa0/0.99 with and IP address on the subnet as the vlan99 interface on the switch. This is so that is has an interface that can communicate with the switch at layer 2 as they need to be on the same local network

Once done you need to give the switch a default gateway in the same way as a PC so it can send data off its local LAN:

Switch(Config) # ip default-gateway <ip address of the router that you just made on the fa 0/0.99 subinterface>

Make any more sense?

- Pea0n
 
Last edited:
Back
Top Bottom