摘要:
[root@DBSERVER51 ~]# ethtool -p eth0 此时就会看到对应的物理口一个灯在不停的闪烁,对了。这就是我们在系统看到的那个叫eth0的网卡了。就是这么简单。 阅读全文
摘要:
#!/bin/bash #获取参数 while getopts "n:" opt; do case $opt in n) client_name=$OPTARG ;; \?) ;; esac done cd /etc/openvpn/easy-rsa/2.0 sourc... 阅读全文
摘要:
#!/bin/bash dir=/etc/openvpn #file=AD00012 basepath=$(cd `dirname $0`; pwd) PACKAGE_DIR="${basepath}/package" if [ -d $dir ];then echo -e "\033[34m 目录已存在.. \033[0m" else mkdir $dir fi #获取... 阅读全文