Linux的常用命令: 1.查看命令的使用参数:man,--help 例:man ls / ls --help 2.查看IP,配置网卡:ifconfig 例:ifconfig(查看当前使用虚拟网卡地址) ifconfig eth0 192.168.241.131 netmask 255.255.25 ...
分类:
系统相关 时间:
2020-08-09 17:58:36
阅读次数:
176
【基于IP多虚拟主机】环境准备1.添加别名ifconfig eth0:1 10.0.0.145 netmask 255.255.255.0 broadcast 10.0.0.255 upifconfig eth0:2 10.0.0.146 netmask 255.255.255.0 broadcas ...
分类:
其他好文 时间:
2020-08-01 15:50:39
阅读次数:
107
将网卡名ens160修改为eth0:查看连接信息:[19:36:04root@centos8~]#nmcliconnectionshowNAMEUUIDTYPEDEVICEens1608e4af756-c080-4279-ad1f-ab5347f89de1ethernetens160virbr05ad88c30-92fb-46e6-851c-5381a34afd79bridgevirbr0新增连接
分类:
其他好文 时间:
2020-07-29 10:39:57
阅读次数:
98
Ubuntu重启网卡的三种方法 一、network利用root帐户# service network restart 或者/etc/init.d/networking restart 二、ifdown/ifup# ifdown eth0# ifup eth0 三、ifconfig# ifconfig ...
分类:
系统相关 时间:
2020-07-28 10:04:39
阅读次数:
123
环境:CentOS 8 主服务器:10.0.0.8 从服务器:10.0.0.28 访问测试主机:10.0.0.6 一、安装DNS服务器软件 bind dnf install bind bind-utils -y ; systemctl enable --now named 二、修改主服务器 bind ...
分类:
其他好文 时间:
2020-07-27 13:38:09
阅读次数:
65
需要三个前提: # 在192.168.26.99代理上网前提:1) 路由表包含需要上网的网段route add -host 100.x.x.x gw 100.x.x.1 # eth1 是Wan口网卡route add -net 192.168.x.0/22 eth0 # eth0 是Lan口网卡 2 ...
分类:
系统相关 时间:
2020-07-22 20:08:34
阅读次数:
83
#!/bin/bash ipv4=`ifconfig eth0 | grep 'inet addr'|awk -F ":" '{print $2}'|awk '{print$1}'` ipv6=`ifconfig eth0 | grep 'inet6 addr'|awk -F "/" '{print ...
分类:
其他好文 时间:
2020-07-21 13:46:58
阅读次数:
61
**一:子网掩码,网络地址,广播地址,ip范围,主机数** 例子、192.168.1.1/25①:子网掩码二进制为 11111111 11111111 11111111 1000000 255.255.255.128 备注:子网掩码连续全为1 的为网络地址,后面的为主机地址②:网络地址为:192.1 ...
分类:
其他好文 时间:
2020-07-20 10:51:17
阅读次数:
73
for i in range(1, 4+1): name = 'r%s' % i eth0 = { 'mac' : '00:00:00:00:0%s:01' % i, 'ipAddrs' : ['10.0.%s.1/24' % i] } eth1 = { 'ipAddrs' : ['192.168. ...
分类:
Web程序 时间:
2020-07-18 22:53:30
阅读次数:
92
background-color 背景颜色 背景颜色值:十六进制方法表示 background-image 背景图像 background-image:url(图片路径); background-repeat 背景重复方式 repeat:沿水平和垂直两个方向平铺 no-repeat:不平铺,即只显示 ...
分类:
Web程序 时间:
2020-07-18 15:44:29
阅读次数:
75