`
扬州老鬼
  • 浏览: 305586 次
  • 性别: Icon_minigender_1
  • 来自: 苏州
社区版块
存档分类
最新评论

ifconfig up 与ifup的区别

阅读更多
今天在做实验的时候发现了ifconfig up 与ifup的小小的区别。
测试环境:redhat 5 和redhat 6
1、配置网卡eth0静态IP。
2、将其中的ONBOOT设置为no
3、重新启动机器
4、使用ifconfig eth0 up来激活网卡的,ifconfig 查看eth0,eth0的信息并有显示eth0的静态ip。
5、改用ifup eth0 来激活网卡,ifconfig查看eth0,此时的eth0的信息中静态IP就被启用。
6、如果将ONBOOT设置为yes,重新启动后,ifconfig up 与ifup的效果是一样的。

在网百度上搜了一下ifconfig up 与ifup的区别,只查到说ifconfig up 会回调ifup脚本。
分享到:
评论

相关推荐

    linuxifconfig用法.pdf

    ifconfig interface_name up/down ``` 设置指定接口的IP地址和子网掩码: ```bash ifconfig interface_name ip_address netmask subnet_mask ``` 2. 网络配置文件 Linux系统中,网络接口的配置通常保存在/etc/...

    linux系统怎么重启网卡?.docx

    4. 输入ifconfig eth3 up命令重新加载网卡。 三、ifdown和ifup命令 ifdown和ifup命令是Linux系统中用于管理网卡的命令。可以使用ifdown命令卸载网卡,然后使用ifup命令重新加载网卡。 使用ifdown和ifup命令重启...

    Linux常用的网络命令

    以下是一些关于Linux常用网络命令的知识点,主要集中在标题和描述中提到的几个命令:ifconfig、ifup、ifdown、route和ip。 1. **ifconfig**: - `ifconfig`命令主要用于查看和配置网络接口的参数,如IP地址、子网...

    linux网络命令[收集].pdf

    例如,`ifconfig eth0 up`用于启动名为`eth0`的网络接口,`ifconfig eth0 down`则关闭它。`ifconfig eth0`则会显示`eth0`接口的所有信息,包括IP、MAC地址、接收和发送的数据包统计等。 2. `ifup` 和 `ifdown` 这...

    linux网络命令.pdf

    例如,`ifconfig eth0 up`可以启动名为`eth0`的接口,`ifconfig eth0 inet addr:192.168.10.100 netmask 255.255.255.0`则可以设置接口的IP地址和子网掩码。此外,`ifconfig`还能显示接口的状态,如接收和发送的...

    网络操作系统Linux(网络配置篇).pdf

    本文档主要介绍了网络操作系统Linux中的网络配置方法及相关命令,包括`hostname`、`ifconfig`、`ifup`/`ifdown`以及`route`等常用命令的使用方法。这些命令对于网络管理及维护具有重要意义。 #### 二、`hostname`...

    linux ip地址配置

    例如,你可以通过`ifconfig {interface} {up|down}`来启动或关闭指定的网络接口,如`ifconfig eth0 up`会启用名为eth0的接口,而`ifconfig eth0 down`则会将其关闭。此外,你还可以使用`ifconfig interface {options...

    Linux_网络配置基础

    ifcfg-eth0 ifdown-isdn ifup-aliases ifup-plusb ifup-wireless ifcfg-lo ifdown-post ifup-ippp ifup-post init.ipv6-global ifdown ifdown-ppp ifup-ipv6 ifup-ppp network-functions ifdown-aliases ifdown-sit ...

    redhatlinux实验12配置网络实验.txt

    - 使用`ifconfig eth0 192.168.1.100 netmask 255.255.255.0 up`命令可以临时修改第一块网卡(通常为eth0)的IP地址和子网掩码。 3. **停用和重新启用网卡**: - 使用`ifdown eth0`命令可以停用第一块网卡; - ...

    网络管理基本配置.docx

    ifconfig 命令可以禁用和启用网卡,例如:`ifconfig eth0 down` 禁用第一块网卡,`ifconfig eth0 up` 启用第一块网卡。也可以使用 ifdown 和 ifup 命令来禁用和启用网卡,例如:`ifdown eth0` 禁用第一块网卡,`ifup...

    linux系统启动自动激活网卡的解决方法

    `ifconfig` 命令是用来配置网卡的命令,语法为 `ifconfig <网卡名称> up`,其中 `<网卡名称>` 是要激活的网卡名称。 例如,要激活 `eth0` 网卡,可以使用以下命令: ``` ifconfig eth0 up ``` 这将激活 `eth0` 网卡...

    Linux 网络接口配置文件及相关工具

    然而,许多发行版为了简化用户操作,提供了专用的配置工具,如ifconfig、ifup、ifdown等。这些命令行工具功能强大且易于使用,例如,ifconfig不仅可以查看网络接口的状态,还可以临时或永久地设置IP地址、子网掩码、...

    计算机病毒与防护:Linux网络配置与排错.ppt

    例如,`ifconfig ethN`查看网卡N的状态,`ifconfig ethN up/down`或`ifdown/ifup ethN`用来启动或关闭网卡,`ifconfig ethN 192.168.1.1 netmask 255.255.255.128`则为网卡N分配IP地址。但若要使配置持久化,应将...

    qemukvm详细教程[借鉴].pdf

    up ifconfig $IFACE 0.0.0.0 up down ifconfig $IFACE down tunctl_user lm // lm 是我的用户名,在这里换为你的用户名 auto br0 bridge_ports eth0 tap0 address 192.168.1.3 netmask 255.255.255.0 gateway 192....

    linux_下IP

    - `# ifconfig eth0 down && ifconfig eth0 up` 第二种方法是使用命令行即时修改网络配置,这种方式只在当前会话有效,重启后会失效: 1. 修改IP地址:使用`ifconfig`命令,例如: ``` # ifconfig eth0 192.168...

    Linux操作系统网络参数配置

    此外,对于网络接口的操作,如`ifconfig eth0 up`或`ifdown eth0`,需要网络接口已启动或关闭,否则命令可能无效。 了解并熟练掌握Linux网络参数配置,对解决网络问题、优化网络性能以及自动化运维至关重要。通过...

    linux网卡不能激活的解决办法

    - 使用`ifconfig eth0 up`命令手动激活网卡。如果此命令执行后仍然出现问题,则需要进一步排查问题原因。 3. **自动激活网卡** - 为了确保每次启动系统时都能自动激活网卡,可以在`/root/.bash_profile`文件末尾...

Global site tag (gtag.js) - Google Analytics