您的網際網路服務提供商(ISP)已為您的Cisco Digital Subscriber Line (DSL)路由器分配了一個動態公有IP地址。
提示:如果您不熟悉思科裝置的配置方法,且希望逐步進行配置,請參閱使用動態IP地址逐步配置PPPoA。
本文件沒有特定需求。
本文件所述內容不限於特定軟體和硬體版本。
如需文件慣例的詳細資訊,請參閱思科技術提示慣例。
-
為您的私有LAN設計IP編址方案。
-
在Cisco DSL路由器乙太網介面上配置IP地址和子網掩碼。
-
使用ATM永久虛電路(PVC)和封裝配置Cisco DSL路由器的ATM介面(非同步數字使用者線路(ADSL)介面)。
-
使用協商的IP地址為ATM點對點協定(PPPoA)建立和配置Cisco DSL路由器的撥號程式介面。
-
對於NAT:在Cisco DSL路由器上配置NAT,以允許共用撥號程式介面的動態公共IP地址。
-
為每台主機PC配置IP地址、子網掩碼、預設網關和域名系統(DNS)伺服器。
對於DHCP:或者,如果您希望思科DSL路由器為電腦客戶端分配動態IP地址,請將每台PC配置為透過DHCP自動獲取IP地址和DNS伺服器。
本節提供用於設定本文件中所述功能的資訊。
注意:使用命令查詢工具(僅限註冊客戶)查詢關於用於本文的命令的更多資訊。
提示:如果您不熟悉思科裝置的配置方法,且希望逐步進行配置,請參閱使用動態IP地址逐步配置PPPoA。
具有動態IP位址的Cisco DSL路由器 |
!--- Comments contain explanations and additional information.
service timestamps debug datetime msec
service timestamps log datetime msec
ip subnet-zero
!
!--- For DHCP:
ip dhcp excluded-address
ip dhcp pool
network
default-router
dns-server
!
interface ethernet0
no shut
ip address <ip address> <subnet mask>
ip nat inside
no ip directed-broadcast
!
interface atm0
no shut
no ip address
no ip directed-broadcast
no ip mroute-cache
pvc <vpi/vci>
encapsulation aal5mux ppp dialer
dialer pool-member 1
!--- Common PVC values supported by ISPs are 0/35 or 8/35. !--- Confirm your PVC values with your ISP.
!
interface dialer1
ip address negotiated
no ip directed-broadcast
!--- For NAT:
ip nat outside
encapsulation ppp
dialer pool 1
ppp chap hostname <username>
ppp chap password <password>
ppp pap sent-username <username> password <password>
!
!--- For NAT:
ip nat inside source list 1 interface dialer1 overload
!--- If you have a pool (a range) of public IP addresses provided !--- by your ISP, you can use a NAT Pool. Replace !--- ip nat inside source list 1 interface dialer1 overload
!--- with these two configuration statements: !--- ip nat inside source list 1 pool
overload
!--- ip nat pool
!--- netmask
!--- If Internet users require access to an internal server, you can !--- add this static NAT configuration statement: !--- ip nat inside source static tcp
{80 or 25}
!---
{80 or 25} extendable
!--- Note: TCP port 80 (HTTP/web) and TCP port 25 (SMTP/mail) are used !--- for this example. You can open other TCP or UDP ports, if needed.
!
ip classless
ip route 0.0.0.0 0.0.0.0 dialer1
!--- For NAT:
access-list 1 permit
!--- In this configuration, access-list 1 defines a standard access list !--- that permits the addresses that NAT translates. For example, if !--- your private IP network is 10.10.10.0, configure !--- access-list 1 permit 10.10.10.0 0.0.0.255 in order to allow NAT to translate !--- packets with source addresses between 10.10.10.0 and 10.10.10.255.
!
end |
目前沒有適用於此組態的驗證程序。
如果您的ADSL服務不適在地,運作請參考PPPoA故障排除。