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

PPPoE Server config 4500M -- terminating pppoe on cisco

Status
Not open for further replies.

golferguy824

Technical User
Joined
Aug 12, 2005
Messages
1
Location
US
I have a cisco 4500M (ios 12.1) with static IP's from qwest going to fastethernet0 - then to fastethernet1 to my lan using dhcp/static NAT connected to my DSLAM then onto my bridge modems/routers...etc.

When using for DHCP or Static IP's I can route out from the PC through the DSLAM then through the cisco fine, but now am trying to setup PPPoE server terminate on Fastethernet 1 for my lan. This is where I'm getting stuck and have NO idea where to go from here.

Here is my config...if you guys have the steps to set this up please let me know. Thank you!

show running-config
Building configuration...

Current configuration : 1671 bytes
!
version 12.1
no service single-slot-reload-enable
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname TechLab
!
logging rate-limit console 10 except errors
no logging console
aaa new-model
aaa authentication ppp default group radius
aaa authorization network default group radius
enable secret 5 $1$b0Tj$9YUFNDf9/MlnkiS81dMft1
enable password admin
!
username techlab privilege 15 password 0 xxxxxx
ip subnet-zero
ip cef
no ip finger
ip name-server 205.171.3.65
ip dhcp excluded-address 172.16.1.2 172.16.1.29
!
ip dhcp pool dhcp1
network 172.16.1.0 255.255.255.0
dns-server 205.171.3.65
default-router 172.16.1.1
!
async-bootp dns-server 205.171.3.65
vpdn enable
no vpdn logging
!
vpdn-group vpdn1
accept-dialin
protocol pppoe
virtual-template 1
!
!
!
!
interface Virtual-Template1
ip unnumbered FastEthernet1
ip directed-broadcast
peer default ip address pool pppoe
ppp authentication chap pap
!
interface FastEthernet0
ip address x.x.x.x 255.255.255.224
ip directed-broadcast
ip nat outside
no ip mroute-cache
half-duplex
!
interface FastEthernet1
ip address 172.16.1.1 255.255.255.0
ip directed-broadcast
ip nat inside
no ip mroute-cache
half-duplex
pppoe enable
!
ip local pool pppoe 172.16.1.101 172.16.1.199
ip local pool dhcp1 172.16.1.30 172.16.1.100
ip nat inside source list 10 interface FastEthernet0 overload
ip classless
ip route 0.0.0.0 0.0.0.0 FastEthernet0 63.238.239.33 permanent
no ip http server
!
access-list 10 permit 172.16.1.0 0.0.0.255
snmp-server community public RO
!
line con 0
transport input none
line aux 0
line vty 0 4
password charlie
!
end

TechLab#

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top