Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Connecting to the Internet

Status
Not open for further replies.

lobo66

IS-IT--Management
Joined
Nov 12, 2002
Messages
106
Location
US
Having a little problem here is what I am trying yo do:

Trying to create an internet connection, here is a list of the devices and the config, I just about have the connection but the switch is not responding.

PC: Directly plugged into a Cisco 2950
----------------------------------------------
Cisco 2950:
FA 0/2
Switchport access vlan 65

FA 0/24
Switchport mode trunk
switchport trunk native vlan 65

Int vlan 65
ip address 192.168.65.1
----------------------------------------------
FA 0/24 is then plugged into a 3660 FA 6/1

Cisco 3660
FA 6/0
ip address 65.1.1.2

FA 6/1
speed 100
duplex full

FA 6/1.1
encapsulation dot1q 65
ip address 192.168.65.254

ip route 0.0.0.0 0.0.0.0 65.1.1.1
------------------------------------------------
FA 6/0 is plugged directly into a 2950 vlan 66 that has metro ETH to the internet.

the PC has a default gateway of 192.168.65.254

I can ping intenet sites from the route (3660) but can ping anything from the 2960 where the PC is plugged in.

Any ideas ??

THX ALL...
 
ip route 0.0.0.0 0.0.0.0 65.1.1.1= (3660)

ip address 65.1.1.= (2960)


OK from the 2960 you can't ping 65.1.1.1?

Also which device is performing NAT?
 
3660 =ip route 0.0.0.0 0.0.0.0 65.1.1.1

2950(1) = Int vlan 65
192.168.65.1
From the 2950 no I cant ping 65.1.1.1, I can ping 65.1.1.2 & 192.168.65.254 .. think the problem is I have to add NAT ant ideas?
 
I am trying to setup Cisco Router 1721. I used Configmaker, but I could not connect to internet. The outside IP 169.128.42.5 Gateway: 169.128.42.4. I know it is not working because I do not know how to enter gateway information. Can someone help? By the way, is there any problem with this configuration?




version 12.2
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname router
!
logging queue-limit 100
enable secret 9
!
ip subnet-zero
!
!
no ip domain lookup
!
ip inspect max-incomplete high 1100
ip inspect one-minute high 1100
ip inspect name FastEthernet_0 tcp
ip inspect name FastEthernet_0 udp
ip inspect name FastEthernet_0 cuseeme
ip inspect name FastEthernet_0 ftp
ip inspect name FastEthernet_0 h323
ip inspect name FastEthernet_0 rcmd
ip inspect name FastEthernet_0 realaudio
ip inspect name FastEthernet_0 smtp
ip inspect name FastEthernet_0 streamworks
ip inspect name FastEthernet_0 vdolive
ip inspect name FastEthernet_0 sqlnet
ip inspect name FastEthernet_0 tftp
ip audit notify log
ip audit po max-events 100
!
!
!
!
!
!
!
interface Ethernet0
description connected to Internet
ip address 169.128.42.5 255.255.255.248
ip access-group 101 in
ip nat outside
half-duplex
!
interface FastEthernet0
description connected to EthernetLAN
ip address 192.168.12.1 255.255.255.0
ip access-group 100 in
ip nat inside
ip inspect FastEthernet_0 in
speed auto
half-duplex
!
router rip
version 2
passive-interface Ethernet0
network 192.168.12.0
no auto-summary
!
ip nat inside source list 1 interface Ethernet0 overload
ip classless
ip route 0.0.0.0 0.0.0.0 Ethernet0
ip http server
no ip http secure-server
!
!
!
access-list 1 permit 192.168.12.0 0.0.0.255
access-list 100 permit ip any any
access-list 101 deny ip any any
!
snmp-server community RO
snmp-server enable traps tty
!
line con 0
exec-timeout 0 0
password
login
line aux 0
line vty 0 4
password
login
!
no scheduler allocate
end
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top