网卡
网卡文件位置:/etc/sysconfig/network-scripts
网卡配置文件的名称命名格式:ifcfg-网卡名称
onboot:是否开机
bootproto:ip地址分配方式
hwaddr:mac地址
重启网卡
1、service network restart
2、直接调用服务的快捷方式
服务的快捷方式的存放位置:/etc/init.d
故重启网卡:/etc/init.d/network restart
管理单个网卡
ifdown 网卡名
ifup 网卡名
快捷方式
软链接:ln -s 原始文件的路径 快捷方式额路径
SSH
远程连接协议、远程文件传输协议
端口号: 22
端口可以被修改:/etc/ssh/ssh_config
端口号
1、范围:0-65535
2、不能使用已经占用的端口
服务管理
启动/停止/重启
1、service sshd start / stop / restart
2、/etc/init.d/sshd start / stop / restart
修改主机名
临时修改
hostname 设置的主机名
永久修改
修改配置文件:/etc/sysconfig/network
需重启后生效,但域名未被dns识别,需要添加到host文件中:
host文件的位置:/etc/hosts
测试
开启http协议:service httpd start
chkconfig
管理开机自启动服务
查看开机自启动服务
chkconfig --list
删除服务
chkconfig --del 服务名
添加开机自启动服务
chkconfig --add 服务名
设置服务在某个级别上开启或关闭
chkconfig -- level 启动级别 服务名 on / off【级别连在一起】
ntp
用于对服务器时间的同步
同步方式两种:
手动同步
上游时间:
ntpdate 时间服务器的域名或者ip
ip地址查询:http://ntp.org.cn/pool.php
自动同步
服务名:ntpd
启动ntpd服务:service ntpd start 或者 /etc/init.d/ntpd start
设置ntpd 服务开机自启:
chkconfig --list | grep ntpd :查看
chkconfig --level 35 ntpd on :启动
防火墙
选择让请求进入,保证网络安全
centos6.5的防火墙是 iptables,centos7的防火墙是firewalld
查看iptables是否开机启动
iptables服务管理
service iptables start / stop / restart
或
/etc/init.d/iptables start / stop / restart
查看防火墙状态(规则)
service iptables status
查看规则
iptables -L -n
-L :列出规则
-n:将单词表达形式改为数字表示
设置防火墙规则
允许80端口通过:iptables -A INPUT -p tcp --dport 80 -j ACCEPT