ifconfig

centos 7 安装 ifconfig 管理命令

谁说我不能喝 提交于 2020-01-29 09:24:05
1. 安装的需求背景 我们知道ifconfig 命令可以用于查看、配置、启用或禁用指定网络接口,如配置网卡的ip地址、掩码、广播地址、网关等,功能不可谓不丰富。 此命令的功能和windows系统的ipconfig非常类似。 但是,centos 7 默认已不再安装此命令,其中很多功能用 ip addr 指令 替代了。 考虑到 既有的很多管理工具或脚本都调用了此功能命令(ifconfig),如果将这些工具直接迁移过来会报错,如果对这个指令用其它指令进行替换,及对这些工具升级,则增加了工作量,还增加了出错的风险。 所以,在centos 7 系统中 安装 ifconfig 命令很有必要。 2. 测试安装的具体步骤 centos 7 系统默认 没有安装 ifconfig 命令。 如果直接运行 ifconfig 命令,则提示错误 :-bash: ifconfig: command not found 参考地址: http://www.10qianwan.com/articledetail/263176.html 此时,查看 /sbin 目录下,其实是没有 ifconfig 文件的。 那么 如何安装ifconfig 呢?我们首先想到的是 运行 yum install ifconfig 。执行效果如何呢? 结果是: no package ifconfig available. error:

CentOs 7 无法联网以及 "ifconfig" 命令无法使用

回眸只為那壹抹淺笑 提交于 2020-01-28 12:57:23
在使用虚拟机过程当中遇见过很多杂七杂八的问题 , 有时候由于时间久 就会忘掉 , 而网上给出的答复有的都能不适合自己 , 或者说根本没用 , 答非所问 , 索性自己整理一份自己在使用CentOs 7 的过程当所遇到的问题总结: 首先我用的是 VMware 在自己电脑上安装的 CentOs 7 64 位的虚拟机 , 第一个问题 , 虚拟机本身无法联网 解决办法 就是 cd 到 /etc/sysconfig/network-scripts/ 下 使用 命令 : vi ifcfg-enp16777736 (这里的enp16777736不是一定,是en开头的就可以) 进入编辑模式 编辑此文件 将 ONBOOT=no 改为 ONBOOT=yes 然后 输入 ":wq" 回车结束编辑 之后重启网卡即可 命令 : service network restart 关于 CentOs 无法上网的问题就解决了 可到这里 ifconfig 不能使用的问题 还没解决 然后看了网络上给出的解决办法是 下载 net-tools 给出的命令是 yum -y install net-tools 或者 yum install net-tools 但是执行结果如下如图 并不乐观 显示并没有找到 然后 通过 yun search ifconfig 进行搜索 发现 该执行存在 与net-tools.x86_64

基础网络操作命令(11 个命令)

a 夏天 提交于 2020-01-28 02:59:29
telnet命令 telnet命令:使用 TELNET 协议远程登录。 ssh命令 ssh命令:openssh套件中的客户端连接工具,可以给予ssh加密协议实现安全的远程登录服务器。 格式: ​ ssh [-1246AaCfGgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec] ​ [-D [bind_address:]port] [-E log_file] [-e escape_char] ​ [-F configfile] [-I pkcs11] [-i identity_file] ​ [-J [user@]host[:port]] [-L address] [-l login_name] [-m mac_spec] ​ [-O ctl_cmd] [-o option] [-p port] [-Q query_option] [-R address] ​ [-S ctl_path] [-W host:port] [-w local_tun[:remote_tun]] ​ [user@]hostname [command] 参数: 参数 作用 -1 强制使用ssh协议版本1; -2 强制使用ssh协议版本2; -4 强制使用IPv4地址; -6 强制使用IPv6地址; -A 开启认证代理连接转发功能; -a

Linux远程管理常用命令

混江龙づ霸主 提交于 2020-01-25 16:16:15
关机/重启 shutdown 查看或配置网卡信息 ifconfig ping 远程登录和复制文件 ssh scp 01. 关机/重启 序号 命令 对应英文 作用 01 shutdown 选项 时间 shutdown 关机/重新启动 1.1 shutdown shutdown 命令可以 安全 关闭 或者 重新启动系统 选项 含义 -r 重新启动 提示: 不指定选项和参数 ,默认表示 1 分钟 之后 关闭电脑 远程维护服务器时,最好不要关闭系统,而应该重新启动系统 常用命令示例 # 重新启动操作系统,其中 now 表示现在 $ shutdown -r now # 立刻关机,其中 now 表示现在 $ shutdown now # 系统在今天的 20:25 会关机 $ shutdown 20:25 # 系统再过十分钟后自动关机 $ shutdown +10 # 取消之前指定的关机计划 $ shutdown -c 02. 查看或配置网卡信息 序号 命令 对应英文 作用 01 ifconfig configure a network interface 查看/配置计算机当前的网卡配置信息 02 ping ip地址 ping 检测到目标 ip地址 的连接是否正常 2.1 网卡 和 IP 地址 网卡 网卡是一个专门负责网络通讯的硬件设备 IP 地址 是设置在网卡上的地址信息 我们可以把 电脑

Regex grep external IP brings back internal IP as well - why?

|▌冷眼眸甩不掉的悲伤 提交于 2020-01-24 17:45:56
问题 I have this grep operation here that gives you the external IP from the output of ifconfig : ipa=$(ifconfig | grep -Po "inet addr:\K[^\s]+" | grep -v "^127") I desire to use only one grep , so I tried the following, which was partly successful: ipa=$(ifconfig | grep -Po "inet addr:\K[0-9]{1,3}?\.[0-9]{1,3}?\.[0-9]{1,3}?\.[0-9]{1,3}?") It is partly successful because it also brings a space plus the internal IP , for some reason: MY_IP_ADDRESS 127.0.0.1 Why is this happening? I mean, why are

Regex grep external IP brings back internal IP as well - why?

霸气de小男生 提交于 2020-01-24 17:45:40
问题 I have this grep operation here that gives you the external IP from the output of ifconfig : ipa=$(ifconfig | grep -Po "inet addr:\K[^\s]+" | grep -v "^127") I desire to use only one grep , so I tried the following, which was partly successful: ipa=$(ifconfig | grep -Po "inet addr:\K[0-9]{1,3}?\.[0-9]{1,3}?\.[0-9]{1,3}?\.[0-9]{1,3}?") It is partly successful because it also brings a space plus the internal IP , for some reason: MY_IP_ADDRESS 127.0.0.1 Why is this happening? I mean, why are

Bash script issue

谁说胖子不能爱 提交于 2020-01-24 10:37:10
问题 I can run this command fine, with the output I want: ifconfig eth0 | grep HWaddr | awk '{print $5}' However, when I set the command to a variable, and print the variable, I get an error: CASS_INTERNAL=`ifconfig eth0 | grep HWaddr | awk '{print \$5}'` $CASS_INTERNAL my internal xxx ip: command not found The weird thing - my internal IP actually shows up. How do I go about this without getting an error? It shouldn't matter, but I'm using the latest version of Ubuntu. 回答1: Well, you grep for

Bash script issue

不羁的心 提交于 2020-01-24 10:37:06
问题 I can run this command fine, with the output I want: ifconfig eth0 | grep HWaddr | awk '{print $5}' However, when I set the command to a variable, and print the variable, I get an error: CASS_INTERNAL=`ifconfig eth0 | grep HWaddr | awk '{print \$5}'` $CASS_INTERNAL my internal xxx ip: command not found The weird thing - my internal IP actually shows up. How do I go about this without getting an error? It shouldn't matter, but I'm using the latest version of Ubuntu. 回答1: Well, you grep for

安装VMware时遇到的问题

Deadly 提交于 2020-01-22 19:27:49
问题1:镜像问题 : 由于没有虚拟机没有读取到正确的镜像文件路径和硬盘启动方式导致的。 解决方式 :虚拟机设置------->CD/DVD(SATA)------->选择ISO映像文件rhel-server-6.1-x86_64-dvd.iso(错因:因为我是把镜像直接放在了电脑的一个文件夹里面)接着选择镜像文件的路径------->然后再重新启动虚拟机就可以正常安装Linux系统了。 问题2:网络配置问题: 刚开始配置网络,右上角一直有一个❌,然后设置IP v4时一直无法应用上去 解决方法 :配置过程:点击右上角电脑图标------->有线/无线------->点击编辑------>IP v4设置(方法选手动)------>添加(输入分配的IP号、子网掩码、网关)------->配置IP v4路由(添加IP v4路由)------>确定并应用(配置路由的原因:需要访问内网的另一网段,不能通过默认网关访问,此时就需要添加静态路由) 几种路由: 主机路由:主机路由是由路由选择表中指向单个IP地址或主机名的路由记录,主机路由的Flags字段为H 网络路由:网路路由是代表主机可以到达的网络,网络路由的Flags字段N。 默认路由:当主机不能在路由表中找到目标路由的IP地址或网络路由时,数据包就会被发送到默认路由(默认网关),默认路由的Flags字段为G。 应用不上 :root账号下:

【网络udp高级day03】Linux命令(ping, ifconfig)+查看或配置网卡信息:ifconfig+测试远程主机连通性:ping

♀尐吖头ヾ 提交于 2020-01-22 18:49:22
文章目录 Linux命令(ping, ifconfig) 查看或配置网卡信息:ifconfig 测试远程主机连通性:ping Linux命令(ping, ifconfig) 查看或配置网卡信息:ifconfig 如果,我们只是敲:ifconfig,它会显示所有网卡的信息: 测试远程主机连通性:ping 通常用ping来检测网络是否正常 来源: CSDN 作者: 汪雯琦 链接: https://blog.csdn.net/qq_35456045/article/details/104070743