配置bind (DNS)域名服务器
bind是由isc组织维护的包括dhcp服务,互联网大部分dns服务器由bind构建正向DNS:域名>ip反向DNS:ip>域名智能dns:能自动判断访问者的IP地址并解析出对应的IP地址cdn:智能dns+缓存服务器(Varnish)2.基于centos 7的正向DNS区域配置yum install -y bind bind-utils安装utils提供nslookup di...
find 命令(持续)
find / -name opt 在根下查找opt字符(包括文件目录)find /etc -name passwd 在etc目录下查找passwd文件find zz/ -name 'san' 查找zz目录下包含san字符的文件find . -name 'san*' 查找当前目录下字符串以san开头的文件find / -amin -10 查找在系统中最后10分钟访问的文件(acc...