拨号上网的开机自启动

 由于自己的系统是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]$:
表示连接正常

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值