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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

827 with Fixed Public IP and PP IP number with NAT

Status
Not open for further replies.

mjoop

Programmer
Jun 9, 2001
9
0
0
US
I have an ADSL line in which I was given a range of fixed public IPs (xxx.xxx.xxx.xxx 255.255.255.248), a Point-to-Point IP number (yyy.yyy.yyy.yyy 255.255.255.252), a VPI (8) and a VCI (35). There is no telephone number to call, no username or password to do any ppp authentication. I am trying to configure a Cisco 827 to work on this line. I have tried two types of configuration so far.

In one, I used an encapsulation of aal5mux ppp dialer on the pvc, with the public IP gateway number (xxx.xxx.xxx.xxx) on the dialer interface, and the PP IP (yyy.yyy.yyy.yyy) on the atm interface, On the ethernet interface, I use NAT. See configuration 1 below.

The result of this configuration is UP, UP on the eth0, atm0 and dialer1 interfaces and UP DOWN on the (2) Virtual-Access interfaces.

If I ping the router from outside (either xxx.xxx.xxx.xxx or yyy.yyy.yyy.yyy), I see the RX light flashing away, and the router stats show the packets received, but no response is sent. There are no atm debug errors, nor ate there any pvcd events logged in the debug atm pvcd.

In the other configuration, I used a pure bridge with the public IP dateway number (xxx.xxx.xxx.xxx) on the BVI interface and the PP IP on the atm interface, with an aal5snap encapsulation on the pvc. See config 2 below.

The result of this configuration is UP, UP on the eth0, atm0 and bvi1 interfaces; there were no virtual-access interfaces (no great surprise).

Again, there was the same result with a ping from outside, but that a non RFC 1577 packet was received (so it is not a snap protocol?)

The telephone company says that the line is fine.

I am at a loss as to what to try next. Any ideas?

Mike.

Configuration 1:
! Cisco Fast Step Template
!
no service pad
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname My_Router
enable secret --deleted--
!
ip subnet-zero
ip dhcp excluded-address 192.168.10.1/28
!
ip dhcp pool CLIENT
network 192.168.10.0 255.255.255.0
domain-name my.domain.com
default-router 192.168.10.1
dns-server zzz.zzz.zzz.zzz vvv.vvv.vvv.vvv
lease 1 0 0
!
!
interface Ethernet0
ip address 192.168.10.1 255.255.255.0
no ip directed-broadcast
ip nat inside
no ip mroute-cache
no shutdown
!
interface ATM0
ip address yyy.yyy.yyy.yyy 255.255.255.252
no ip directed-broadcast
no ip mroute-cache
no atm ilmi-keepalive
no shutdown
pvc 8/35
encapsulation aal5mux ppp dialer
dialer pool-member 1
!
bundle enable
hold-queue 244 in
!
interface Dialer1
ip address xxx.xxx.xxx.xxx 255.255.255.248
no ip directed-broadcast
ip nat outside
encapsulation ppp
dialer pool 1
dialer-group 2
!
ip nat inside source list 1 interface Dialer1 overload
ip classless
ip route 0.0.0.0 0.0.0.0 Dialer1
no ip http server
!
access-list 1 permit 192.168.10.0 0.0.0.255
!
line console 0
exec-timeout 120
line vty 0 4
exec-timeout 0
login local
!
scheduler max-task-time 5000
end


Configuration 2:

! Cisco Fast Step Template
!
no service pad
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname My_Router
enable secret --deleted--
!
ip subnet-zero
ip dhcp excluded-address 192.168.10.1/28
!
ip dhcp pool CLIENT
network 192.168.10.0 255.255.255.0
domain-name my.domain.com
default-router 192.168.10.1
dns-server zzz.zzz.zzz.zzz vvv.vvv.vvv.vvv
lease 1 0 0
!
!
bridge irb
!
!
interface Ethernet0
ip address 192.168.10.1 255.255.255.0
no ip directed-broadcast
ip nat inside
no ip mroute-cache
no shutdown
!
interface ATM0
ip address yyy.yyy.yyy.yyy 255.255.255.252
no ip directed-broadcast
no ip mroute-cache
no atm ilmi-keepalive
ip nat outside
no shutdown
pvc 8/35
encapsulation aal5snap
!
bundle-enable
bridge-group 1
hold-queue 208 in
!
interface BVI1
ip address xxx.xxx.xxx.xxx 255.255.255.248
no ip directed-broadcast
ip nat outside
no shutdown
!
ip nat pool NAT_POOL 192.168.10.64 192.168.10.127 netmask 255.255.255.0
ip nat inside source list 1 pool NAT_POOL overload
ip classless
ip route 0.0.0.0 0.0.0.0 BVI1
no ip http server
!
access-list 1 permit 192.168.10.0 0.0.0.255
bridge 1 protocol ieee
bridge 1 route ip
!
gateway
!
line console 0
exec-timeout 120
line vty 0 4
exec-timeout 0
login local
!
scheduler max-task-time 5000
end

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top