撥接的開機自啟動

來源:互聯網
上載者:User
 由於自己的系統是Fedora9+XP SP2,在上網這個問題上,F9通常在建立串連時就詢問使用者是否設定開機自啟動,每次開機就可自動連接。但在XP上要在案頭上點網路連接連網上網,有點麻煩,特google找了一下,其實就是微軟內建的rasdial命令,方法如下:
1。建一個bat指令碼,內容為:
  1. ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
  2. rasdial dgLAN01234567@16900.gd dgLAN01234567@16900.gd 123456
  3. ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

就一行可以了,其中第一個dgLAN01234567@16900.gd為使用者案頭上'寬頻連線'的串連名(即所謂的ISP),第二個dgLAN01234567@16900.gd是串連使用者名稱,這個和密碼123456是要交錢申請後後才能得到。
2。把這個bat指令碼(我把它存為C:/ADLS_connect.bat)設為開機自啟動,這有很多方法,我用的是:開始-->run-->輸入gpedit.msc-->電腦配置-->Windows 設定-->指令碼 (啟動/關機)-->啟動-->添加-->把剛才那個bat檔案添加進去就OK了。
 
附:Fedora9下的撥號連線自啟動

首先找到命令:

  1. [Hsxzhe--01:25:09 ~]$:whereis pppoe
  2. pppoe: /sbin/pppoe /usr/sbin/pppoe /usr/share/man/man8/pppoe.8.gz
  3. [Hsxzhe--01:25:31 ~]$:ls /sbin/|grep pppoe
  4. pppoe
  5. pppoe-connect
  6. pppoe-relay
  7. pppoe-server
  8. pppoe-setup
  9. pppoe-sniff
  10. pppoe-start
  11. pppoe-status
  12. pppoe-stop

找到命令為:/sbin/pppoe-setup
然後需要root許可權:

  1. [Hsxzhe--01:26:07 ~]$:su
  2. 密碼:
  3. [Hsxzhe--01:26:28 Hsxzhe]$:/sbin/pppoe-setup
  4. Welcome to the PPPoE client setup.  First, I will run some checks on
  5. your system to make sure the PPPoE client is installed properly...
  6. The following DSL config was found on your system:
  7.   Device:      Name:
  8.   ppp0         DSLppp0
  9. Please enter the device if you want to configure the present DSL config
  10. (default ppp0) or enter 'n' if you want to create a new one:
  11. LOGIN NAME
  12. Enter your Login Name (default dgLAN01270661@16900.gd):
  13. INTERFACE
  14. Enter the Ethernet interface connected to the PPPoE modem
  15. For Solaris, this is likely to be something like /dev/hme0.
  16. For Linux, it will be ethX, where 'X' is a number.
  17. (default eth0):
  18. Do you want the link to come up on demand, or stay up continuously?
  19. If you want it to come up on demand, enter the idle time in seconds
  20. after which the link should be dropped.  If you want the link to
  21. stay up permanently, enter 'no' (two letters, lower-case.)
  22. NOTE: Demand-activated links do not interact well with dynamic IP
  23. addresses.  You may have some problems with demand-activated links.
  24. Enter the demand value (default no):
  25. DNS
  26. Please enter the IP address of your ISP's primary DNS server.
  27. If your ISP claims that 'the server will provide dynamic DNS addresses',
  28. enter 'server' (all lower-case) here.
  29. If you just press enter, I will assume you know what you are
  30. doing and not modify your DNS setup.
  31. Enter the DNS information here: server
  32. PASSWORD
  33. Please enter your Password:
  34. Please re-enter your Password:
  35. USERCTRL
  36. Please enter 'yes' (three letters, lower-case.) if you want to allow
  37. normal user to start or stop DSL connection (default yes):    
  38. FIREWALLING
  39. Please choose the firewall rules to use.  Note that these rules are
  40. very basic.  You are strongly encouraged to use a more sophisticated
  41. firewall setup; however, these will provide basic security.  If you
  42. are running any servers on your machine, you must choose 'NONE' and
  43. set up firewalling yourself.  Otherwise, the firewall rules will deny
  44. access to all standard servers like Web, e-mail, ftp, etc.  If you
  45. are using SSH, the rules will block outgoing SSH connections which
  46. allocate a privileged source port.
  47. The firewall choices are:
  48. 0 - NONE: This script will not set any firewall rules.  You are responsible
  49.           for ensuring the security of your machine.  You are STRONGLY
  50.           recommended to use some kind of firewall rules.
  51. 1 - STANDALONE: Appropriate for a basic stand-alone web-surfing workstation
  52. 2 - MASQUERADE: Appropriate for a machine acting as an Internet gateway
  53.                 for a LAN
  54. Choose a type of firewall (0-2): 0
  55. Start this connection at boot time
  56. Do you want to start this connection at boot time?
  57. Please enter no or yes (default no):yes
  58. ** Summary of what you entered **
  59. Ethernet Interface: eth0
  60. User name:          dgLAN01270661@16900.gd
  61. Activate-on-demand: No
  62. DNS addresses:      Supplied by ISP's server
  63. Firewalling:        NONE
  64. User Control:       yes
  65. 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查看串連狀態

  1. [Hsxzhe--01:34:40 Hsxzhe]$:/sbin/pppoe-status
  2. pppoe-status: Link is up and running on interface ppp0
  3. 3: ppp0: <POINTOPOINT,MULTICAST,NOARP,UP,LOWER_UP> mtu 1492 qdisc pfifo_fast state UNKNOWN qlen 3
  4.     link/ppp
  5.     inet 58.252.31.154 peer 58.252.28.1/32 scope global ppp0
  6. [Hsxzhe--01:42:43 Hsxzhe]$:

表示串連正常

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.