?? ppp-on
字號:
#!/bin/sh## Script to initiate a ppp connection. This is the first part of the# pair of scripts. This is not a secure pair of scripts as the codes# are visible with the 'ps' command. However, it is simple.## These are the parameters. Change as needed.TELEPHONE=*99***1# #The telephone number for the connectionACCOUNT= #The account name for logon (as in 'George Burns')PASSWORD= #The password for this account (and 'Gracie Allen')LOCAL_IP=0.0.0.0 #Local IP address if known. Dynamic = 0.0.0.0REMOTE_IP=0.0.0.0 #Remote IP address if desired. Normally 0.0.0.0NETMASK=255.255.255.0 #The proper netmask if needed## Export them so that they will be available at 'ppp-on-dialer' time.export TELEPHONE ACCOUNT PASSWORD# # This is the location of the script which dials the phone and logs# in. Please use the absolute file name as the $PATH variable is not# used on the connect option. (To do so on a 'root' account would be# a security hole so don't ask.)#---------/tmp/udisk/ppp-on-dialer----the acture pathDIALER_SCRIPT=/tmp/udisk/ppp-on-dialer## Initiate the connection# # I put most of the common options on this command. Please, don't# forget the 'lock' option or some programs such as mgetty will not# work. The asyncmap and escape will permit the PPP link to work with# a telnet or rlogin connection. You are welcome to make any changes# as desired. Don't use the 'defaultroute' option if you currently# have a default route to an ethernet gateway.#asyncmap 0 escape FF kdebug 0 $LOCAL_IP:$REMOTE_IP \#----------/tmp/udisk/pppd---the acture path ---exec /tmp/udisk/pppd debug lock modem nocrtscts user gprs +chap noauth /dev/tts/1 115200 \ asyncmap 0 escape FF kdebug 0 ipcp-accept-local ipcp-accept-remote \ usepeerdns defaultroute connect $DIALER_SCRIPT
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -