2007年1月15日

linux下安装adsl另一方法

在不用rp-pppoe的情况下,只安装ppp,应该算最小安装了。

a.内核支持
不忘安装网卡的驱动和pppoe支持

b.安装 ppp
(下载地址 ftp://ftp.samba.org/pub/ppp/ppp-2.4.4.tar.gz 。也可以选择最新版本。)

./configure --prefix=/usr &&
make &&
make install &&
make install-etcppp

c.配置 pppoe 帐户

cat >/etc/ppp/peers/pppoe <<"EOF"
# there's no need to install rp-pppoe
plugin rp-pppoe.so
# Replace "eth0" with your network interface name
eth0
# Replace "你的帐户名" with your username at the ISP
user "你的帐户名"

# The settings below usually don't need to be changed
noauth
hide-password
updetach
debug
defaultroute
noipdefault
usepeerdns
remotename pppoe

EOF

d.配置密码

touch /etc/ppp/pap-secrets
chmod 600 /etc/ppp/pap-secrets
cat >/etc/ppp/pap-secrets <<"EOF"
# username remotename password IP for the peer
"你的帐户名" * "你的密码" *
EOF

e.拨号连接与断开

连接:
pppd call pppoe

断开:
killall pppd

没有评论: