-
网络属性配置(二)
本文接上篇。。。 ip address -protocol address management. ip address add -add new protocol address ip addr add IFADDR label NAME :为额外添加的地址指明接口别名 [broadcast ADDRESS]: 广播地址;会根据IP和ENTMASK自动计算得到; [scope SCOPE_VALUE]; glob...
-
网络配置详解(一)
Linux网络属性配置 ifcfg命令家族:ifconfig, route, netstat ifconfig命令: ifconfig [INTERFACE] # ifconfig -a 显示所有接口,包括inactive状态的接口; ifconfig interface [aftype] opti...
-
计算机网络基础及常用工具
Linux网络属性配置 计算机网络: TCP/IP: 协议栈(使用) ISO, OSI: 协议栈(学习) MAC:Media Access Control 48bits: ICANN:24bits. 2^24 地址块:2^24 &nb...
-
linux使用yum对程序包管理相关知识
yum客户端: 配置文件: /etc/yum.conf: 为所有仓库提供公共配置 /etc/yum.repos.d/* .repo: 为仓库的指向提供配置 仓库的定义: [r...
-
bash脚本编程
bash脚本编程之用户交互: 脚本参数 用户交互:通过键盘输入数据 read [option]...[name]... -p: "PROMPT" -t: TIMEOUT #!/bin/bash # read -p "Enter a username: " name ...