shell脚本配置IP
#!/bin/bashipfile="/etc/sysconfig/network-scripts/ifcfg-eth2"ip=$1echo"DEVICE=eth0">$...
#!/bin/bash
ipfile="/etc/sysconfig/network-scripts/ifcfg-eth2"
ip=$1
echo "DEVICE=eth0" > $ipfile
echo "BOOTPROTO=static" >>$ipfile
echo "ONBOOT=yes" >>$ipfile
echo "TYPE=Ethernet" >>$ipfile
echo "IPADDR=117.21.217.${ip}" >>$ipfile
echo "NETMASK=255.255.255.128" >>$ipfile
echo "GATEWAY=117.21.217.129" >>$ipfile
/etc/init.d/network restart
执行完脚本提示:
usage:/etc/init.d/network {start|status|restart}
而且在目录下生成一个乱码的文件,请各位大神帮忙看看哪里有问题!谢谢!
系统版本:centos 5.8 展开
ipfile="/etc/sysconfig/network-scripts/ifcfg-eth2"
ip=$1
echo "DEVICE=eth0" > $ipfile
echo "BOOTPROTO=static" >>$ipfile
echo "ONBOOT=yes" >>$ipfile
echo "TYPE=Ethernet" >>$ipfile
echo "IPADDR=117.21.217.${ip}" >>$ipfile
echo "NETMASK=255.255.255.128" >>$ipfile
echo "GATEWAY=117.21.217.129" >>$ipfile
/etc/init.d/network restart
执行完脚本提示:
usage:/etc/init.d/network {start|status|restart}
而且在目录下生成一个乱码的文件,请各位大神帮忙看看哪里有问题!谢谢!
系统版本:centos 5.8 展开
4个回答
展开全部
你编辑的是ifcfg-eth2,怎么写进去的Device是eth0??
我是6.5的测试系统,执行之后可以正常启动,不过报错是针对/etc/init.d/network这个脚本的
./IP_eth0.sh 104
/etc/init.d/network: line 184: command not found
/etc/init.d/network: line 184: 33mDEVICE=eth0: command not found
/etc/init.d/network: line 185: command not found
/etc/init.d/network: line 185: 33mTYPE=Ethernet: command not found
/etc/init.d/network: line 184: command not found
/etc/init.d/network: line 184: 33mDEVICE=eth1: command not found
/etc/init.d/network: line 185: command not found
/etc/init.d/network: line 185: 33mTYPE=Ethernet: command not found
/etc/init.d/network: line 184: command not found
/etc/init.d/network: line 184: 33mDEVICE=eth2: command not found
/etc/init.d/network: line 185: command not found
/etc/init.d/network: line 185: 33mTYPE=Ethernet: command not found
我是6.5的测试系统,执行之后可以正常启动,不过报错是针对/etc/init.d/network这个脚本的
./IP_eth0.sh 104
/etc/init.d/network: line 184: command not found
/etc/init.d/network: line 184: 33mDEVICE=eth0: command not found
/etc/init.d/network: line 185: command not found
/etc/init.d/network: line 185: 33mTYPE=Ethernet: command not found
/etc/init.d/network: line 184: command not found
/etc/init.d/network: line 184: 33mDEVICE=eth1: command not found
/etc/init.d/network: line 185: command not found
/etc/init.d/network: line 185: 33mTYPE=Ethernet: command not found
/etc/init.d/network: line 184: command not found
/etc/init.d/network: line 184: 33mDEVICE=eth2: command not found
/etc/init.d/network: line 185: command not found
/etc/init.d/network: line 185: 33mTYPE=Ethernet: command not found
力控科技
2024-08-19 广告
2024-08-19 广告
ForceSCADA是力控科技信创产品的重要组成部分,具备完全自主知识产权,支持部署在Linux桌面版、服务器版、嵌入式等系统架构下。使用ForceSCADA可以搭建创新性高、扩展性佳、融合度强的SCADA平台,进而构建高效、智能化的监控中...
点击进入详情页
本回答由力控科技提供
展开全部
1.usage:/etc/init.d/network {start|status|restart} 这个应该是windows记事本作怪把,因为记事本的换行符和linux有点不同。
2.乱码文件: 你不会是用中文输入法打的字?
2.乱码文件: 你不会是用中文输入法打的字?
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
1.usage:/etc/init.d/network {start|status|restart} 这个应该是windows记事本作怪把,因为记事本的换行符和linux有点不同。
2.乱码文件: 你不会是用中文输入法打的字?
2.乱码文件: 你不会是用中文输入法打的字?
追问
这个脚本在其他设备上跑是没有问题的,脚本里也没有中文,切换到英文打的
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#!/bin/bash
ipfile="/etc/sysconfig/network-scripts/ifcfg-eth2"
ip=$1
echo "DEVICE=eth2" > $ipfile
echo "BOOTPROTO=static" >>$ipfile
echo "ONBOOT=yes" >>$ipfile
echo "TYPE=Ethernet" >>$ipfile
echo "IPADDR=117.21.217.${ip}" >>$ipfile
echo "NETMASK=255.255.255.128" >>$ipfile
echo "GATEWAY=117.21.217.129" >>$ipfile
/etc/init.d/network restart
ipfile="/etc/sysconfig/network-scripts/ifcfg-eth2"
ip=$1
echo "DEVICE=eth2" > $ipfile
echo "BOOTPROTO=static" >>$ipfile
echo "ONBOOT=yes" >>$ipfile
echo "TYPE=Ethernet" >>$ipfile
echo "IPADDR=117.21.217.${ip}" >>$ipfile
echo "NETMASK=255.255.255.128" >>$ipfile
echo "GATEWAY=117.21.217.129" >>$ipfile
/etc/init.d/network restart
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |