  Alassane
@everstream.com
| cisco 1751 & AT&T 6 Mbs DSL Service
Hello,
I am almost ready to give up on this but I thought I would give it one more try here, and hopefully find some help... I have a Cisco 1751 pre-installed with IOS version C1700-K9O3SY7-M (This is the IP/ADLS/FW/IDS PLUS IPSEC 3DES )with WIC-1ADSL 1-port ADSL WAN Interface Card. I have AT&T DSL service (6Mbs down /768 up). I looked and found different config types on the cisco and other network sites but none of them worked so far. All that I am trying to accomplish is : 1)Use the 1751 as my DSL ROUTER / FIREWALL for DHCP and NAT to my local network (192.168.100.0/24),and port forward 3389, 22, 80 to 192.168.100.x... I found and modified this config but the 1751 is still not picking up an IP from the DSL WAN side. Here is the config i have so far.
! version 12.3 service timestamps debug datetime msec service timestamps datetime msec ! hostname DSL_ROUTER ! ip subnet-zero ! ip dhcp excluded-address 192.168.100.1 ! ip dhcp pool pool name HOME
network 192.168.100.0 255.255.255.0 default-router 192.168.100.1 ! interface FastEthernet0 ip address 192.168.100.1 255.0.0.0 no ip directed-broadcast ip nat inside no ip mroute-cache ! interface ATM0 no ip address no ip directed-broadcast no ip mroute-cache no atm ilmi-keepalive pvc 1/150 encapsulation aal5mux ppp dialer dialer pool-member 1 ! hold-queue 224 in ! interface Dialer0 ip address negotiated no ip directed-broadcast ip nat outside encapsulation ppp dialer pool 1 dialer-group 1 ppp pap sent-username username xxxxx@att.net password password
! ip nat inside source list 1 interface Dialer0 overload ip classless ip route 0.0.0.0 0.0.0.0 Dialer0 no ip http server ! access-list 1 permit 192.168.100.0.255.255.255.0 dialer-list 1 protocol ip permit ! end
Thanks in advance for your help. |
|
 elnino
join:2006-08-27 Akron, OH
1 edit | Your access-list 1 is incorrect. It should be the following:
access-list 1 permit 192.168.100.0 0.0.0.255
Router access-lists use wildcard masks, not subnet masks.
Also, you'll want to either add DNS servers to your DHCP config or add "import-all" to the group to pull the ones your ISP assigns. |
|
  NeTwOrKDawg Networking is a lifestyle
join:2005-04-25 Brantford, ON | reply to Alassane Have you verified your PVC and encapsulation? I am not familiar with AT&T, but those are common misconfigurations. |
|
 deepblackmag
join:2004-12-27 00000
1 edit | The PVC for SBC/ATT i use is 0/35 i would reccomend trying that.
This is my config:
|
|
  rovernet Premium join:2004-02-11 Richardson, TX | reply to Alassane Alassane, if atm pvc 0/35 does not work, try 8/35. |
|
  Alassane
@everstream.com | Cool ! PVC 0/35 worked. I actually hooked for AT&T.
Thanks,
Alassane |
|
  Alassane
@everstream.com | reply to elnino OOOPS ! Thanks for pointing that out. I corrected it and things are working well so far.
Thanks a lot,
Alassane |
|