linux 网络操作 route iptables ufw】的更多相关文章

Linux 基础网路操作  ifconfig eth0 down # 禁用网卡 ifconfig eth0 up # 启用网卡 ifup eth0: # 启用网卡 mii-tool em1 # 查看网线是否连接 dhclient eth1 # 自动获取IP ifconfig eth0: 192.168.1.221 netmask 255.255.255.0 # 增加逻辑IP地址 echo > /proc/sys/net/ipv4/icmp_echo_ignore_all # 禁ping trac…
网络接口配置文件(网卡信息文件) '/etc/sysconfig/network-srcipts/ifcfg-*(eth0)' (注意区分大小写) DEVICE=eth0 网卡编号 HWADDR=08:00:27:83:5A:B2 TYPE=Ethernet 类型为以太网 UUID=0c9d3ddc-eeaf-409c-a2dd-bd492baab4d3 唯一识别码(如果两个机器的UUID一致,会造成无法上网) ONBOOT=yes 开机时是否启动网卡 NM_CONTROLLED=yes 是否可…
关闭与启动网卡 ifdown 网卡设备名 #禁用该网卡设备 ifup网卡设备名 #启用该网卡设备 查看网络状态 netstat  命令 ​ -t 列出tcp协议端口 -u 列出udp协议端口 -n 不使用域名与服务名,而使用IP地址和端口号 -l 仅列出在监听状态网络服务 -a 列出所有的网络服务 查看某个端口是否被占用 "使用lsof"    losf -i 端口号查看某个端口是否被占用    命令 lsof -i tcp:port(port 替换为端口号,比如6379)可以查看该端…
防火墙状态 查询防火墙状态 service iptables status 停止防火墙 service iptables stop 启动防火墙 service iptables start 重启防火墙 service iptables restart 永久关闭防火墙 chkconfig iptables off 永久关闭后启动 chkconfig iptables on 关闭防火墙注意 *) 如果要关闭iptables ,可以通过命令 /etc/init.d/iptables stop 停止 *…
ifconfig 查看已经被激活的网卡详细信息 "ifconfig eth0" 查看特定的网卡信息 [root@ssgao ~]# ifconfig eth0 eth0 Link encap:Ethernet HWaddr 08:00:27:79:E2:80 inet addr:192.168.11.158 Bcast:192.168.11.255 Mask:255.255.254.0 inet6 addr: fe80::a00:27ff:fe79:e280/64 Scope:Link…
主题: Linux服务器上软件提供服务 1.网络操作 2.端口操作 1.网络操作 本机必须能够ping通目标主机(本地虚拟机或者远程主机) 2.端口操作 1.开启服务监听端口 2.设置防火墙,放行访问该端口的数据包 iptables&netfilter 四表五链和堵通策略 应用举例: Linux上安装Tomcat和MySQL,客户端要能够访问服务器上的Tomcat服务和MySQL服务 操作: 1.网络操作 本机必须能够ping通目标主机(本地虚拟机或者远程主机) 2.端口操作 1.开启服务监听端…
linux网络编程 no route to host 解决方案 [整合资料] (2013-05-13 21:38:12) 转载▼ 标签: net iptables it 分类: Linux 参考资料http://1413570.blog.51cto.com/1403570/792861http://2614223.blog.51cto.com/2604223/764757 在vmvare里面配了两台mysql,发现用mysql连不上mysql服务器,用telnet登录mysql的3306端口,发…
Linux网络相关 ifocnfig 查看网卡ip(yum install net-tools) ip add 查看网卡 ip add = ifocnfig ifconfig 不显示down掉的网卡,只显示正在工作的网卡. ifconfig -a  显示当前正在使用的网卡和down掉的网卡 ifdown enth0  关闭eth0网卡 ifup enth0  启动eth0网卡 当先执行ifdown eth0的时候就断开远程连接了,如果需要重新启动某个网卡,可以两天命令 一起执行 ifdown e…
第7周第3次课(5月9日) 课程内容: 10.11 Linux网络相关10.12 firewalld和netfilter10.13 netfilter5表5链介绍10.14 iptables语法 扩展(selinux了解即可)1. selinux教程 http://os.51cto.com/art/201209/355490.htm2.selinux pdf电子书 http://pan.baidu.com/s/1jGGdExK 10.11 Linux网络相关 [root@jimmylinux-0…
一. Linux网络相关 yum install net-tools ifconfig查看网卡ip ifup ens33开启网卡 ifdown ens33关闭网卡 设定虚拟网卡ens33:0 mii-toll ens33 与ethtool ens33一样查看网卡是否连接 更改主机名hostnamectl sethostname davery DNS配置文件vi /etc/resoly.conf /etc/host文件 临时更改IP vim /cat/hosts    编辑 二.firewalld…