由於自己的系統是Fedora9+XP SP2,在上網這個問題上,F9通常在建立串連時就詢問使用者是否設定開機自啟動,每次開機就可自動連接。但在XP上要在案頭上點網路連接連網上網,有點麻煩,特google找了一下,其實就是微軟內建的rasdial命令,方法如下:
1。建一個bat指令碼,內容為:
- ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- rasdial dgLAN01234567@16900.gd dgLAN01234567@16900.gd 123456
- ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
就一行可以了,其中第一個dgLAN01234567@16900.gd為使用者案頭上'寬頻連線'的串連名(即所謂的ISP),第二個dgLAN01234567@16900.gd是串連使用者名稱,這個和密碼123456是要交錢申請後後才能得到。
2。把這個bat指令碼(我把它存為C:/ADLS_connect.bat)設為開機自啟動,這有很多方法,我用的是:開始-->run-->輸入gpedit.msc-->電腦配置-->Windows 設定-->指令碼 (啟動/關機)-->啟動-->添加-->把剛才那個bat檔案添加進去就OK了。
附:Fedora9下的撥號連線自啟動
首先找到命令:
- [Hsxzhe--01:25:09 ~]$:whereis pppoe
- pppoe: /sbin/pppoe /usr/sbin/pppoe /usr/share/man/man8/pppoe.8.gz
- [Hsxzhe--01:25:31 ~]$:ls /sbin/|grep pppoe
- pppoe
- pppoe-connect
- pppoe-relay
- pppoe-server
- pppoe-setup
- pppoe-sniff
- pppoe-start
- pppoe-status
- pppoe-stop
找到命令為:/sbin/pppoe-setup
然後需要root許可權:
- [Hsxzhe--01:26:07 ~]$:su
- 密碼:
- [Hsxzhe--01:26:28 Hsxzhe]$:/sbin/pppoe-setup
- Welcome to the PPPoE client setup. First, I will run some checks on
- your system to make sure the PPPoE client is installed properly...
- The following DSL config was found on your system:
- Device: Name:
- ppp0 DSLppp0
- Please enter the device if you want to configure the present DSL config
- (default ppp0) or enter 'n' if you want to create a new one:
- LOGIN NAME
- Enter your Login Name (default dgLAN01270661@16900.gd):
- INTERFACE
- Enter the Ethernet interface connected to the PPPoE modem
- For Solaris, this is likely to be something like /dev/hme0.
- For Linux, it will be ethX, where 'X' is a number.
- (default eth0):
- Do you want the link to come up on demand, or stay up continuously?
- If you want it to come up on demand, enter the idle time in seconds
- after which the link should be dropped. If you want the link to
- stay up permanently, enter 'no' (two letters, lower-case.)
- NOTE: Demand-activated links do not interact well with dynamic IP
- addresses. You may have some problems with demand-activated links.
- Enter the demand value (default no):
- DNS
- Please enter the IP address of your ISP's primary DNS server.
- If your ISP claims that 'the server will provide dynamic DNS addresses',
- enter 'server' (all lower-case) here.
- If you just press enter, I will assume you know what you are
- doing and not modify your DNS setup.
- Enter the DNS information here: server
- PASSWORD
- Please enter your Password:
- Please re-enter your Password:
- USERCTRL
- Please enter 'yes' (three letters, lower-case.) if you want to allow
- normal user to start or stop DSL connection (default yes):
- FIREWALLING
- Please choose the firewall rules to use. Note that these rules are
- very basic. You are strongly encouraged to use a more sophisticated
- firewall setup; however, these will provide basic security. If you
- are running any servers on your machine, you must choose 'NONE' and
- set up firewalling yourself. Otherwise, the firewall rules will deny
- access to all standard servers like Web, e-mail, ftp, etc. If you
- are using SSH, the rules will block outgoing SSH connections which
- allocate a privileged source port.
- The firewall choices are:
- 0 - NONE: This script will not set any firewall rules. You are responsible
- for ensuring the security of your machine. You are STRONGLY
- recommended to use some kind of firewall rules.
- 1 - STANDALONE: Appropriate for a basic stand-alone web-surfing workstation
- 2 - MASQUERADE: Appropriate for a machine acting as an Internet gateway
- for a LAN
- Choose a type of firewall (0-2): 0
- Start this connection at boot time
- Do you want to start this connection at boot time?
- Please enter no or yes (default no):yes
- ** Summary of what you entered **
- Ethernet Interface: eth0
- User name: dgLAN01270661@16900.gd
- Activate-on-demand: No
- DNS addresses: Supplied by ISP's server
- Firewalling: NONE
- User Control: yes
- Accept these settings and adjust configuration files (y/n)?y
這裡共需輸入:1.Enter;2.dgLAN01270661@16900.gd(這裡我以前已建立過,預設有這個就直接Enter);3.Enter;4.Enter;5.server;6.兩次輸入密碼;7.Enter;8.0;9.yes(設定開機自啟動);10.y;
建立完畢
然後可以用/sbin/pppoe-start啟動,也可以重啟,自啟動
用/sbin/pppoe-status查看串連狀態
- [Hsxzhe--01:34:40 Hsxzhe]$:/sbin/pppoe-status
- pppoe-status: Link is up and running on interface ppp0
- 3: ppp0: <POINTOPOINT,MULTICAST,NOARP,UP,LOWER_UP> mtu 1492 qdisc pfifo_fast state UNKNOWN qlen 3
- link/ppp
- inet 58.252.31.154 peer 58.252.28.1/32 scope global ppp0
- [Hsxzhe--01:42:43 Hsxzhe]$:
表示串連正常