Linux PPPoE設置的步驟和命令
前一篇文章中,我們介紹了Windows PPPoE的設置,不知道大家是否了解了,那么這里我們則重點講解一下Linux PPPoE設置的內(nèi)容。請大家一起來看看文章內(nèi)容吧。
Linux PPPoE設置1、 網(wǎng)卡配置。
兩塊網(wǎng)卡,eth0為撥號網(wǎng)卡,IP:192.168.1.1(其他的地址也可);eth1為內(nèi)網(wǎng)網(wǎng)卡,IP:192.168.0.1。掩碼均為255.255.255.0。 局域網(wǎng)網(wǎng)段為192.168.0.0。
注意:此處兩塊網(wǎng)卡均不能設網(wǎng)關。
Linux PPPoE設置2、 PPPoE軟件的升級與安裝
1) 在 http://www.roaringpenguin.com/pppoe/#download 下載
2) 安裝rp-pppoe。以root身份執(zhí)行
rpm –Uvh rp-pppoe-3.5-1.i386.rpm
Linux PPPoE設置3、 修改/etc/ sysctl.conf
將其中的
net.ipv4.ip_forward = 0
改為
net.ipv4.ip_forward = 1
Linux PPPoE設置4、 去除ipchains模塊,只選擇iptables方法如下:
1)setup
2)選擇system service
3)去除ipchains
4)選中iptables
5)重啟機器
Linux PPPoE設置5、 PPPoE客戶端配置
在rp-pppoe-3.5-1.i386.rpm安裝完畢后,接下來就可進行PPPoE客戶端配置了。過程如下。
#/usr/sbin/adsl-setup
>>> Enter your PPPoE user name: ——此處輸入撥號帳號的用戶名
>>> Enter the Ethernet interface connected to the ADSL modem For Solaris, this is likely to be something like /dev/hme0. For Linux, it will be ethn, where n is a number. (default eth0): ——輸eth0
>>> Enter the demand value (default no): ——輸no
>>> Enter the DNS information here: ——輸210.52.149.2(視當?shù)剡\營商的DNS服務器IP而定)
>>> Please enter your PPPoE password: ——輸網(wǎng)通用戶口令
>>> Choose a type of firewall (0-2): ——輸0
>>> Accept these settings and adjust configuration files (y/n)? ——輸y
Linux PPPoE設置6、 啟動撥號連接
/usr/sbin/adsl-start
成功連接后,屏幕顯示Connected。
此時這臺linux已可以上網(wǎng)瀏覽了。
Linux PPPoE設置7、 IP偽裝
為了使局域網(wǎng)中的其他機器能通過Linux服務器共享上網(wǎng),至少須執(zhí)行下面的命令:
iptables -t nat -A POSTROUTING -o ppp0 -j MASQUERADE
完成后,在192.168.0.0網(wǎng)段(網(wǎng)關為192.168.0.1)的PC機就可透過Linux上網(wǎng)了!
Linux PPPoE設置8、 開機自啟動
為了使Linux服務器能夠自動撥號,執(zhí)行下面步驟。
1)chkconfig --add adsl
2)setup
3)選擇system services
4)選中ADSL
5)OK退出
6)打開/etc/rc.d/rc.local,在該文件的末尾添上下面語句
echo "[OK]"
echo "Drop ICMP form anywhere"
echo 1 > /proc/sys/net/ipv4/icmp_echo_ignore_all
echo "[OK]"
iptables -t nat -A POSTROUTING -o ppp0 -j MASQUERADE
說明:前面四句用于關閉ICMP,防止別人Ping。
Linux PPPoE設置9、 至此,一切OK,一個簡單的撥號建成了。
重啟機器后,發(fā)現(xiàn)linux的internet共享連接已經(jīng)一切就緒了。