LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1157|回复: 5

如何安装时修改网卡物理地址?

[复制链接]
发表于 2007-11-26 15:19:42 | 显示全部楼层 |阅读模式
被绑定了
如何安装时候在rc.conf里边修改?
 楼主| 发表于 2007-11-26 16:33:06 | 显示全部楼层
Post by fallening;1787887
被绑定了
如何安装时候在rc.conf里边修改?

如下解决如何?
修改/etc/rc.conf
DAEMONS=(syslog-ng !hotplug mac_eth0 network sshd netfs crond xinetd httpd)
在/etc/rc.d/下加一文件mac_eth0
#!/bin/bash

#This file changes the MAC address of eth0

start()
{
        echo "Changing MAC..."
        /usr/local/bin/macchanger --mac=00:20:ed:6e:b4:34 eth0
}

stop()
{
        echo "Macchanger stops"
}

case "$1" in
start)
  start
;;
stop)
  stop
;;
*)
  echo "Use $0 [start] to change the MAC!"
;;
esac
exit 0
回复 支持 反对

使用道具 举报

 楼主| 发表于 2007-11-26 18:45:12 | 显示全部楼层
Post by fallening;1787916
如下解决如何?
修改/etc/rc.conf
DAEMONS=(syslog-ng !hotplug mac_eth0 network sshd netfs crond xinetd httpd)
在/etc/rc.d/下加一文件mac_eth0
#!/bin/bash

#This file changes the MAC address of eth0

start()
{
        echo "Changing MAC..."
        /usr/local/bin/macchanger --mac=00:20:ed:6e:b4:34 eth0
}

stop()
{
        echo "Macchanger stops"
}

case "$1" in
start)
  start
;;
stop)
  stop
;;
*)
  echo "Use $0 [start] to change the MAC!"
;;
esac
exit 0


不成,没有这个macchanger 默认安装
我转换成ifconfig eth0 hw ether ***也不行
回复 支持 反对

使用道具 举报

发表于 2007-11-28 18:09:06 | 显示全部楼层
吧命令放到 /etc/rc.local 里面吧。
回复 支持 反对

使用道具 举报

发表于 2007-12-3 13:50:18 | 显示全部楼层
没有这个macchanger
[root@myhost ganlu]# pacman -Ss macchanger
community/macchanger 1.5.0-1
    A small utility to change you NIC's MAC address
回复 支持 反对

使用道具 举报

发表于 2007-12-22 19:47:48 | 显示全部楼层
哪有那么麻烦
直接在/etc/rc.conf网卡那一块
ethX hw ether XX:XX:XX:XX:XX:XX
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表