日本免费全黄少妇一区二区三区-高清无码一区二区三区四区-欧美中文字幕日韩在线观看-国产福利诱惑在线网站-国产中文字幕一区在线-亚洲欧美精品日韩一区-久久国产精品国产精品国产-国产精久久久久久一区二区三区-欧美亚洲国产精品久久久久

設(shè)定 Solaris 2 的 ppp

Solaris 2 的 asppp (asynchronous ppp) 使用到不少 UUCP 的設(shè)定檔
如果你對 UUCP 有一定的概念, 那再好不過了
(關(guān)於 UUCP 請參見 RFC 976, 1137)
底下將以交大的 Terminal Server 為例
示 Solaris 2 ppp 的使用方法

0. 請先確定你的系統(tǒng)有 UUCP 與 PPP

> pkginfo | egrep "PPP|UUCP"

所得結(jié)果當(dāng)是:

application SUNWapppA Dial-up PPP Administration
system SUNWapppr PPP/IP Asynchronous PPP daemon configuration files
system SUNWapppu PPP/IP Asynchronous PPP daemon and PPP login service
system SUNWbnur Networking UUCP UtilitIEs, (Root)
system SUNWbnuu Networking UUCP Utilities, (Usr)
system SUNWpppk PPP/IP and IPdialup Device Drivers

1. 設(shè)定 /etc/uucp/Systems 并用 cu -d -L 來測試之
例如,我的 /etc/uucp/Systems 內(nèi)容是這麼寫的:

nctu Any ACU 38400 730600 oice: 6n

用 :
cu -d -L nctu
來看看撥號與選擇 ppp 是否正常
(交大 terminal server 的選擇畫面最後一個字是 choice:
選項 6 是 ppp)
如果你的是接在 com1, 還得改一改 /etc/uucp/Devices

2. 在 /etc/gateways 中加入

norip ipdptp0

告訴 routed 說不要用 RIP(Routing Information Protocol, 參見 RFC 1058, 1723)

3. 把 /etc/nsswitch.conf 中寫的是

hosts: files

請改為

hosts: files dns

4. 在 /etc/resolv.conf 中加入適當(dāng)?shù)?nameserv
例如交大的 server 是:

nameserver 140.113.1.1
domain nctu.edu.tw

5. 在 /etc/hosts 中加入

0.0.0.0 void
140.126.1.1 nctu # address 隨便寫, 反正 ppp 會幫你設(shè)出正確值

6. 寫好 /etc/asppp.conf, 我的 asppp.conf

ifconfig ipdptp0 plumb void nctu down
path
inactivity_timeout 120
interface ipdptp0
peer_system_name nctu
default_route

7. 寫個如下的 shell script, 把它叫 "attach", 挑個你喜歡的地方放

#!/bin/sh
detach $1
ifc_cmd=`egrep "^ifconfig.*$1" /etc/asppp.cf`
ifc=`echo $ifc_cmd | awk "{print $2}"`
ifconfig $ifc up
route add default $1 1 >/dev/null
ping $1

8. 寫個如下的 shell script, 把它叫 "detach", 挑個你喜歡的地方放

#!/bin/sh
ifc_cmd=`egrep "^ifconfig.*$1" /etc/asppp.cf`
ifc=`echo $ifc_cmd | awk "{print $2}"`
if [ -n "`ifconfig -a | grep $ifc`" ]
then
ifconfig $ifc down
id=`ps -e | grep aspppd | awk "{print $1}`
if test -n "$id"
then
kill -1 $id
fi
ifconfig $ifc unplumb
fi
eval $ifc_cmd
exit 0

把 attach 與 detach 所在的目錄加進你的 $PATH 中
重新開機後, 就大功告成了,
用 "attach nctu"/"detach nctu" 就可以連接/切斷與交大 terminal server 的 ppp


NOTE:
Solaris 2.4 的 PPP 沒有 implement PAP, 所以若您撥接 SeedNet 的 PPP
請安裝 dp(ftp://nctuccca.edu.tw/Unix/networking/ppp/dp/ )

Bibliography:
1. Peter Block , "Solaris 2.4, PPP and dynamic address"
2. M. Horton, "UUCP mail interchange format standard", 02/01/1986(RFC1137)
3. SunSoft, "TCP/IP Network Administration Guide"
4. W. Simpson, "The Point-to-Point Protocol (PPP)", 07/21/1994.(RFC1661)
5. W. Simpson, "PPP in HDLC-like Framing", 07/21/1994.(RFC1662)


連上 hinet ppp

修改以下檔案
/etc/asppp.cf
ifconfig ipdptp0 plumb 192.1.1.10 168.95.4.254 up
#使用 hinet gateways ip 168.95.4.254 your Machine is 192.1.1.10
path
interface ipdptp0
inactivity_timeout 120
will_do_authentication pap
pap_id (your id)
pap_passWord( your password)
peer_system_name hinet
default_route
debug_level 9
negotiate_address on

/etc/resolv.conf
domain hinet.net
nameserver 168.95.192.1
nameserver 168.95.1.1

/etc/nsswitch.conf加入
hosts: files dns

/etc/gateways
norip ipdptp0

/etc/uucp/Systems
hinet Any ACUTEC 38400 4125678

/etc/uucp/Devices
ACUTEC cua/b - Any hayes
#使用 hayes 就不用修改 /etc/uucp/Dialers

推薦閱讀