搜尋
首頁資料庫mysql教程CISCO路由器连接ADSL之PPPoE配置

CISCO路由器连接ADSL之PPPoE配置

Jun 07, 2016 pm 03:06 PM
adslcisciscopppoe路由器連接配置

CISCO 路由器 连接 ADSL之PPPoE 配置 Cisco 路由器 连接 ADSL modem的PPPoE 配置 : hostname bjsite ! ip subnet-zero no ip domain-lookup ! vpdn enable no vpdn logging ! vpdn-group 1 request-dialin protocol pppoe ! interface Ethernet0/0 ip addre


CISCO路由器连接ADSL之PPPoE配置

 

Cisco路由器连接ADSL modem的PPPoE配置

 

hostname bjsite 

ip subnet-zero 

no ip domain-lookup 

vpdn enable 

no vpdn logging 

vpdn-group 1 

request-dialin 

protocol pppoe 

interface Ethernet0/0 

ip address 192.168.0.1 255.255.255.0 

ip nat inside 

no ip mroute-cache 

interface Ethernet0/1 

no ip address 

pppoe enable 

pppoe-client dial-pool-number 1 

!   www.2cto.com  

interface Dialer1 

ip address negotiated 

ip nat outside 

ip mtu 1492 

encapsulation ppp 

no ip mroute-cache 

dialer pool 1 

dialer-group 1 

ppp authentication pap 

ppp pap sent-username dg48907653@163.gd password xxxxxxxx

ip classless 

no ip http server 

dialer-list 1 protocol ip permit 

ip nat inside source list 1 interface Dialer1 overload

ip route 0.0.0.0 0.0.0.0 dialer1 

access-list 1 permit 192.168.0.0 0.0.0.255 

line con 0 

exec-timeout 0 0 

transport input none 

line vty 0 4 

login 

end

 

Cisco路由器连接ADSL WIC卡之PPPoE配置

 

vpdn-group pppoe 

request-dialin 

 

!--- we are the PPPoE client requesting to establish 

!--- a session with the aggregation unit (6400 NRP). 

 

protocol pppoe 

  www.2cto.com  

!--- internal Ethernet network.

 

interface FastEthernet0 

ip address 10.92.1.182 255.255.255.0 

ip nat inside 

 

!--- DSL interface.

interface ATM0 

no ip address 

no atm ilmi-keepalive

bundle-enable

dsl operating-mode auto

hold-queue 224 in

 

!--- All defaults.

 

!--- PPPoE runs on top of AAL5SNAP, but the 

!--- encap aal5snap command is not used. 

 

interface ATM0.1 point-to-point 

pvc 1/1 

pppoe-client dial-pool-number 1

 

!--- pvc 1/1 is an example value that must be changed 

!--- to match the value used by the ISP. 

  www.2cto.com  

 

!--- The PPPoE client code ties into a dialer interface upon 

!--- which a virtual-access interface is cloned. 

interface Dialer1 

ip address negotiated 

ip mtu 1492

 

!--- Ethernet MTU default = 1500 (1492 + PPPoE headers = 1500)

 

ip nat outside 

encapsulation ppp 

dialer pool 1

 

!--- Ties to atm interface. 

 

ppp authentication chap callin 

ppp chap hostname  

ppp chap password

!--- The ISP will instruct you regarding 

!--- the type of authentication to use. 

!--- To change from PPP CHAP to PPP PAP, 

!--- replace the following three lines:

!--- ppp authentication chap callin 

!--- ppp chap hostname  

!--- ppp chap password  

!--- with the following two lines:

!--- ppp authentication pap callin

!--- ppp pap sent-username password

  www.2cto.com  

!--- For NAT we are going to overload on the Dialer1 

!--- interface and add a default route out 

!--- since dialer ip address can change. 

 

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 10.92.1.0 0.0.0.255

陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
將用戶添加到MySQL:完整的教程將用戶添加到MySQL:完整的教程May 12, 2025 am 12:14 AM

掌握添加MySQL用戶的方法對於數據庫管理員和開發者至關重要,因為它確保數據庫的安全性和訪問控制。 1)使用CREATEUSER命令創建新用戶,2)通過GRANT命令分配權限,3)使用FLUSHPRIVILEGES確保權限生效,4)定期審計和清理用戶賬戶以維護性能和安全。

掌握mySQL字符串數據類型:varchar vs.文本與char掌握mySQL字符串數據類型:varchar vs.文本與charMay 12, 2025 am 12:12 AM

chosecharforfixed-lengthdata,varcharforvariable-lengthdata,andtextforlargetextfield.1)chariseffity forconsistent-lengthdatalikecodes.2)varcharsuitsvariable-lengthdatalikenames,ballancingflexibilitibility andperformance.3)

MySQL:字符串數據類型和索引:最佳實踐MySQL:字符串數據類型和索引:最佳實踐May 12, 2025 am 12:11 AM

在MySQL中處理字符串數據類型和索引的最佳實踐包括:1)選擇合適的字符串類型,如CHAR用於固定長度,VARCHAR用於可變長度,TEXT用於大文本;2)謹慎索引,避免過度索引,針對常用查詢創建索引;3)使用前綴索引和全文索引優化長字符串搜索;4)定期監控和優化索引,保持索引小巧高效。通過這些方法,可以在讀取和寫入性能之間取得平衡,提升數據庫效率。

mysql:如何遠程添加用戶mysql:如何遠程添加用戶May 12, 2025 am 12:10 AM

ToaddauserremotelytoMySQL,followthesesteps:1)ConnecttoMySQLasroot,2)Createanewuserwithremoteaccess,3)Grantnecessaryprivileges,and4)Flushprivileges.BecautiousofsecurityrisksbylimitingprivilegesandaccesstospecificIPs,ensuringstrongpasswords,andmonitori

MySQL字符串數據類型的最終指南:有效的數據存儲MySQL字符串數據類型的最終指南:有效的數據存儲May 12, 2025 am 12:05 AM

tostorestringsefliceflicyInmySql,ChooSetherightDataTypeBasedyOrneOrneEds:1)USEcharforFixed-LengthStstringStringStringSlikeCountryCodes.2)UseVarcharforvariable-lengtthslikenames.3)USETEXTCONTENT.3)

mysql blob vs.文本:為大對象選擇正確的數據類型mysql blob vs.文本:為大對象選擇正確的數據類型May 11, 2025 am 12:13 AM

選擇MySQL的BLOB和TEXT數據類型時,BLOB適合存儲二進制數據,TEXT適合存儲文本數據。 1)BLOB適用於圖片、音頻等二進制數據,2)TEXT適用於文章、評論等文本數據,選擇時需考慮數據性質和性能優化。

MySQL:我應該將root用戶用於產品嗎?MySQL:我應該將root用戶用於產品嗎?May 11, 2025 am 12:11 AM

No,youshouldnotusetherootuserinMySQLforyourproduct.Instead,createspecificuserswithlimitedprivilegestoenhancesecurityandperformance:1)Createanewuserwithastrongpassword,2)Grantonlynecessarypermissionstothisuser,3)Regularlyreviewandupdateuserpermissions

MySQL字符串數據類型說明了:選擇適合您數據的合適類型MySQL字符串數據類型說明了:選擇適合您數據的合適類型May 11, 2025 am 12:10 AM

mySqlStringDatatAtatPessHouldBechoseBasedondatActarActeristicsAndusecases:1)USEcharforFixed lengthStstringStringStringSlikeCountryCodes.2)usevarcharforvariable-lengtthslikeLikenames.3)usebarnionororvarinyorvarinyorvarybinarydatalgebenedaTalgeextocrabextrapon.4)

See all articles

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

熱工具

Atom編輯器mac版下載

Atom編輯器mac版下載

最受歡迎的的開源編輯器

SublimeText3 英文版

SublimeText3 英文版

推薦:為Win版本,支援程式碼提示!

Dreamweaver CS6

Dreamweaver CS6

視覺化網頁開發工具

EditPlus 中文破解版

EditPlus 中文破解版

體積小,語法高亮,不支援程式碼提示功能

DVWA

DVWA

Damn Vulnerable Web App (DVWA) 是一個PHP/MySQL的Web應用程序,非常容易受到攻擊。它的主要目標是成為安全專業人員在合法環境中測試自己的技能和工具的輔助工具,幫助Web開發人員更好地理解保護網路應用程式的過程,並幫助教師/學生在課堂環境中教授/學習Web應用程式安全性。 DVWA的目標是透過簡單直接的介面練習一些最常見的Web漏洞,難度各不相同。請注意,該軟體中