怎么上网?情况是这样的
用的是校园网,注册的时候用的mac地址不是自己的,学校好像绑定了mac地址,已经更改mac了地址,可是ip不知道怎么配置找了若干帖,没有一个可以真正的解决问题的。现在mac修改正确,ip怎么配置都不能固定,我们是通过网页固定ip在网页登录,否则就上不了网。现在UBUNTU上不去啊。
就算上去了还有个问题怎么搭个局域网?作为主机和另一台xp用双网卡加集线器的方式上网??
帮我解决了吧。把我留在linux世界里
[问题]就一个问题了,问不到就只好放弃乌班图了
版面规则
我们都知道新人的确很菜,也喜欢抱怨,并且带有浓厚的Windows习惯,但既然在这里询问,我们就应该有责任帮助他们解决问题,而不是直接泼冷水、简单的否定或发表对解决问题没有任何帮助的帖子。乐于分享,以人为本,这正是Ubuntu的精神所在。
我们都知道新人的确很菜,也喜欢抱怨,并且带有浓厚的Windows习惯,但既然在这里询问,我们就应该有责任帮助他们解决问题,而不是直接泼冷水、简单的否定或发表对解决问题没有任何帮助的帖子。乐于分享,以人为本,这正是Ubuntu的精神所在。
-
- 帖子: 50
- 注册时间: 2007-05-10 20:18
-
- 帖子: 50
- 注册时间: 2007-05-10 20:18
- hethe
- 帖子: 3666
- 注册时间: 2005-08-01 9:14
-
- 帖子: 50
- 注册时间: 2007-05-10 20:18
-
- 帖子: 17
- 注册时间: 2006-08-30 18:31
我是哈工大的,跟你一样固定ip+固定MAC+固定帐号=上网。
编辑 /etc/network/interfaces
sudo gedit /etc/network/interfaces
这是我的,照着改改就行
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static #静态ip
pre-up ifconfig eth0 hw ether 00:0a:eb:10:8b:16 #网卡地址,注意这里一定要有pre-up,网上普遍传的那个好像不太对
address 12.34.56.78 #你的ip
netmask 255.255.254.0 # 你的子网掩码
gateway 123.456.789.123 #网关
auto eth1
iface eth1 inet dhcp
auto eth2
iface eth2 inet dhcp
auto ath0
iface ath0 inet dhcp
auto wlan0
iface wlan0 inet dhcp
附件是适用于我的静态编译的mystar,如果需要你试一下,不知道能不能用。
解开后,在mystar.conf里设好你的用户名和密码
sudo ./mystar
认证过程显示:
>> Searching for server...
@@ Server found, requesting user name...
>> Sending user name...
@@ User name valid, requesting password...
>> Sending password...
@@ Password valid, authentication SUCCESS!!!
Keeping sending echo...
希望对你有用,没用也别怪我,good luck
编辑 /etc/network/interfaces
sudo gedit /etc/network/interfaces
这是我的,照着改改就行
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static #静态ip
pre-up ifconfig eth0 hw ether 00:0a:eb:10:8b:16 #网卡地址,注意这里一定要有pre-up,网上普遍传的那个好像不太对
address 12.34.56.78 #你的ip
netmask 255.255.254.0 # 你的子网掩码
gateway 123.456.789.123 #网关
auto eth1
iface eth1 inet dhcp
auto eth2
iface eth2 inet dhcp
auto ath0
iface ath0 inet dhcp
auto wlan0
iface wlan0 inet dhcp
附件是适用于我的静态编译的mystar,如果需要你试一下,不知道能不能用。
解开后,在mystar.conf里设好你的用户名和密码
sudo ./mystar
认证过程显示:
>> Searching for server...
@@ Server found, requesting user name...
>> Sending user name...
@@ User name valid, requesting password...
>> Sending password...
@@ Password valid, authentication SUCCESS!!!

Keeping sending echo...
希望对你有用,没用也别怪我,good luck
- 附件
-
- mystar-HIT.tar.gz
- 静态编译的mystar,哈工大校内认证通过,其他不清楚
- (365.53 KiB) 已下载 145 次