octavian10
MIS
Can someone please answer a simple question about a 2621 router that I am playing with? I have the follwoing configuration working no problem for letting internal users access the internet.
interface FastEthernet0/0
ip address dhcp
ip nat outside
duplex auto
speed auto
interface FastEthernet0/1
ip address 192.168.1.1 255.255.255.0
ip nat inside
duplex auto
speed auto
ip nat inside source list 100 interface fastethernet0/0 overload
access-list 100 permit ip 192.168.1.1 0.0.0.255 any
The problem I have is that if I take the public address issued to the router and staticly assign it to Fastethernet0/0 the internet access no longer works. Example
interface Fastethernet0/0
ip address 24.50.xx.xx 255.255.255.0
ip nat outside
duplex auto
speed auto
24.50.xx.xx 255.255.255.0 was issued to the router by the isp when fastethernet0/0 was in ip address dhcp mode.
"I hear and I forget. I see and I remember. I do and I understand."
- Confucius (551 BC - 479)
interface FastEthernet0/0
ip address dhcp
ip nat outside
duplex auto
speed auto
interface FastEthernet0/1
ip address 192.168.1.1 255.255.255.0
ip nat inside
duplex auto
speed auto
ip nat inside source list 100 interface fastethernet0/0 overload
access-list 100 permit ip 192.168.1.1 0.0.0.255 any
The problem I have is that if I take the public address issued to the router and staticly assign it to Fastethernet0/0 the internet access no longer works. Example
interface Fastethernet0/0
ip address 24.50.xx.xx 255.255.255.0
ip nat outside
duplex auto
speed auto
24.50.xx.xx 255.255.255.0 was issued to the router by the isp when fastethernet0/0 was in ip address dhcp mode.
"I hear and I forget. I see and I remember. I do and I understand."
- Confucius (551 BC - 479)