Long story short, I'm testing out the HWIC-1ADSL on a Cisco 1841 using a /29 public block provided by Covad. It took me a few but I was able to get the circuit online with the following:
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Router
!
boot-start-marker
boot-end-marker
!
no aaa new-model
memory-size iomem 5
ip cef
!
no ip dhcp use vrf connected
!
ip dhcp pool lan
network 192.168.13.0 255.255.255.0
default-router 192.168.13.1
!
ip name-server 64.105.172.27
ip name-server 67.100.88.27
!
multilink bundle-name authenticated
vpdn enable
!
vpdn-group 1
request-dialin
protocol pppoe
l2tp tunnel receive-window 1024
!
archive
log config
hidekeys
!
bba-group pppoe global
!
!
interface FastEthernet0/0
ip address 192.168.13.1 255.255.255.0
duplex auto
speed auto
!
interface FastEthernet0/1
ip address x.x.x.1 255.255.255.248
duplex auto
speed auto
!
interface ATM0/0/0
no ip address
no atm ilmi-keepalive
dsl operating-mode auto
dsl enable-training-log
pvc 0/35
encapsulation aal5snap
pppoe-client dial-pool-number 1
!
interface Dialer1
ip address negotiated
ip mtu 1492
encapsulation ppp
no ip mroute-cache
dialer pool 1
dialer-group 1
ppp authentication chap callin
ppp chap hostname "YourNameHere@bz8"
ppp chap password 0 "YourPassWord"
!
ip route 0.0.0.0 0.0.0.0 Dialer1
!
ip http server
no ip http secure-server
ip dns server
!
access-list 1 permit any
dialer-list 1 protocol ip permit
!
control-plane
!
line con 0
password cisco
login
line aux 0
line vty 0 4
password cisco
login
!
scheduler allocate 20000 1000
!
webvpn cef
end
The easy part is out of the way but onto my problem. Covad assigns private IP's for the egress interface for blocks larger than a /32. The following is what my circuit looks like after authentication:
Router#sho ip int bri
Interface IP-Address OK? Method Status Protocol
FastEthernet0/0 192.168.13.1 YES manual up down
FastEthernet0/1 1.1.1.1 YES manual up up
ATM0/0/0 unassigned YES manual up up
Virtual-Access1 unassigned YES unset up up
Virtual-Access2 unassigned YES unset up up
Dialer1 172.22.134.246 YES IPCP up up
I'm sure this all seems straight forward so, here's the question. The goal of my test was to find away to keep both fast ethernet interfaces private and somehow pat off the egress. Is it possible to assign the /29 block to an interface other than fa0/0 or fa0/1? I had visions in my head of a sub or loopback interface off ATM0/0/0 but any attempt to remove the /29 from one of the fa interfaces proved to be unsuccessful.
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Router
!
boot-start-marker
boot-end-marker
!
no aaa new-model
memory-size iomem 5
ip cef
!
no ip dhcp use vrf connected
!
ip dhcp pool lan
network 192.168.13.0 255.255.255.0
default-router 192.168.13.1
!
ip name-server 64.105.172.27
ip name-server 67.100.88.27
!
multilink bundle-name authenticated
vpdn enable
!
vpdn-group 1
request-dialin
protocol pppoe
l2tp tunnel receive-window 1024
!
archive
log config
hidekeys
!
bba-group pppoe global
!
!
interface FastEthernet0/0
ip address 192.168.13.1 255.255.255.0
duplex auto
speed auto
!
interface FastEthernet0/1
ip address x.x.x.1 255.255.255.248
duplex auto
speed auto
!
interface ATM0/0/0
no ip address
no atm ilmi-keepalive
dsl operating-mode auto
dsl enable-training-log
pvc 0/35
encapsulation aal5snap
pppoe-client dial-pool-number 1
!
interface Dialer1
ip address negotiated
ip mtu 1492
encapsulation ppp
no ip mroute-cache
dialer pool 1
dialer-group 1
ppp authentication chap callin
ppp chap hostname "YourNameHere@bz8"
ppp chap password 0 "YourPassWord"
!
ip route 0.0.0.0 0.0.0.0 Dialer1
!
ip http server
no ip http secure-server
ip dns server
!
access-list 1 permit any
dialer-list 1 protocol ip permit
!
control-plane
!
line con 0
password cisco
login
line aux 0
line vty 0 4
password cisco
login
!
scheduler allocate 20000 1000
!
webvpn cef
end
The easy part is out of the way but onto my problem. Covad assigns private IP's for the egress interface for blocks larger than a /32. The following is what my circuit looks like after authentication:
Router#sho ip int bri
Interface IP-Address OK? Method Status Protocol
FastEthernet0/0 192.168.13.1 YES manual up down
FastEthernet0/1 1.1.1.1 YES manual up up
ATM0/0/0 unassigned YES manual up up
Virtual-Access1 unassigned YES unset up up
Virtual-Access2 unassigned YES unset up up
Dialer1 172.22.134.246 YES IPCP up up
I'm sure this all seems straight forward so, here's the question. The goal of my test was to find away to keep both fast ethernet interfaces private and somehow pat off the egress. Is it possible to assign the /29 block to an interface other than fa0/0 or fa0/1? I had visions in my head of a sub or loopback interface off ATM0/0/0 but any attempt to remove the /29 from one of the fa interfaces proved to be unsuccessful.