当前位置:  操作系统/服务器>linux
本页文章导读:
    ▪liunx下网卡混杂模式设置方法      liunx下网卡混杂模式设置方法 设为混杂模式: 代码如下: [root@localhost ~]#ifconfig eth0 promisc 取消混杂模式: 代码如下: [root@localhost ~]#ifconfig eth0 -promisc......
    ▪升级openssh的例子      本文带领大家升级最新版本的openssh6.1哦。 首先,安装zlib 下载地址:http://www./down/56.html   代码如下: tar zxvf zlib-1.2.5.tar.gz  cd zlib-1.2.5 ./configure --prefix=/usr/local/zlib make && make install 安.........
    ▪iptables防火墙配置一例      这里再给大家提供一个iptables防火墙配置的例子,供大家参考学习。 1、安装iptables防火墙 如果没有安装iptables需要先安装,CentOS执行: yum install iptables Debian/Ubuntu执行: apt-get install iptables 2、.........

[1]liunx下网卡混杂模式设置方法
    来源: 互联网  发布时间: 2013-12-24

liunx下网卡混杂模式设置方法

设为混杂模式:

代码如下:
[root@localhost ~]#ifconfig eth0 promisc

取消混杂模式:

代码如下:
[root@localhost ~]#ifconfig eth0 -promisc

    
[2]升级openssh的例子
    来源: 互联网  发布时间: 2013-12-24

本文带领大家升级最新版本的openssh6.1哦。

首先,安装zlib
下载地址:http://www./down/56.html
 

代码如下:
tar zxvf zlib-1.2.5.tar.gz 
cd zlib-1.2.5
./configure --prefix=/usr/local/zlib
make && make install

安装openssl
下载最新包:http://www.openssl.org/source/openssl-1.0.1c.tar.gz
 

代码如下:

tar zxvf openssl-1.0.1c.tar.gz
cd openssl-1.01c
./config shared zlib --prefix=/usr/local/openssl
make && make install

whereis openssl
cd /usr/bin/
mv openssl openssl.bak
ln -s /usr/local/openssl/bin/openssl .

cd /usr/include/
mv openssl openssl.bak
ln -s /usr/local/openssl/include/openssl .

验证:
 

代码如下:
openssl version
OpenSSL 1.0.1c 10 May 2012
echo "/usr/local/openssl/lib/" >> /etc/ld.so.conf
ldconfig

安装openssh
下载最新安装包:http://openbsd.org.ar/pub/OpenBSD/OpenSSH/portable/openssh-6.1p1.tar.gz
 

代码如下:

tar zxvf openssh-6.1p1.tar.gz
cd openssl-6.1p1
./configure  --prefix=/usr//local/openssh --sysconfdir=/usr/local/openssh/etc/ssh --with-pam --with-zlib=/usr/local/zlib/ --with-ssl-dir=/usr/local/openssl/ --with-md5-passwords-mandir=/usr/share/man/

make && make install

若提示:configure: error: PAM headers not found
安装 pam*   pam-devel 是关键
yum -y install pam*

查看sshd运行状态:
netstat -anptul | grep :22

停掉服务,取消开机启动:
service sshd stop
chkconfig sshd off

设置环境变量:
echo "export
PATH=/usr/local/openssh/bin:$JAVA_HOME/bin:$PATH " >>/etc/profile
使其生效:
source /etc/profile

设置sshd开机启动:
 

代码如下:
echo " /usr/local/openssh/sbin/sshd " >> /etc/rc.d/rc.local

启动sshd
/usr/local/opoenssh/sbin/sshd
没有错误提示

查看进程监听状态
[root@localhost ~]# lsof -i:22
COMMAND  PID USER   FD   TYPE DEVICE SIZE NODE NAME
sshd    2686 root    3u  IPv6  11222       TCP *:ssh(LISTEN)
sshd    2686 root    4u  IPv4  11230       TCP *:ssh(LISTEN)
说明服务已经正常启动。

查看ssh版本:
[root@localhost ~]# ssh -v
OpenSSH_6.1p1, OpenSSL 1.0.1c 10 May 2012
usage: ssh [-1246AaCfgKkMNnqsTtVvXxYy] [-b bind_address]

[-c cipher_spec]
           [-D [bind_address:]port] [-e escape_char] [-F configfile]
           [-I pkcs11] [-i identity_file]
           [-L [bind_address:]port:host:hostport]
           [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o

option] [-p port]
           [-R [bind_address:]port:host:hostport] [-S ctl_path]
           [-W host:port] [-w local_tun[:remote_tun]]
           [user@]hostname [command]
或者:
[root@localhost ~]# telnet localhost 22
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
SSH-2.0-OpenSSH_6.1
升级完成。


    
[3]iptables防火墙配置一例
    来源: 互联网  发布时间: 2013-12-24

这里再给大家提供一个iptables防火墙配置的例子,供大家参考学习。

1、安装iptables防火墙

如果没有安装iptables需要先安装,CentOS执行:
yum install iptables

Debian/Ubuntu执行:
apt-get install iptables

2、清除已有iptables规则
iptables -F
iptables -X
iptables -Z

3、开放指定的端口
 

代码如下:
#允许本地回环接口(即运行本机访问本机)
iptables -A INPUT -s 127.0.0.1 -d 127.0.0.1 -j ACCEPT
# 允许已建立的或相关连的通行
iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
#允许所有本机向外的访问
iptables -A OUTPUT -j ACCEPT
# 允许访问22端口
iptables -A INPUT -p tcp --dport 22 -j ACCEPT
#允许访问80端口
iptables -A INPUT -p tcp --dport 80 -j ACCEPT
#允许FTP服务的21和20端口
iptables -A INPUT -p tcp --dport 21 -j ACCEPT
iptables -A INPUT -p tcp --dport 20 -j ACCEPT
#如果有其他端口的话,规则也类似,稍微修改上述语句就行
#禁止其他未允许的规则访问
iptables -A INPUT -j REJECT  (注意:如果22端口未加入允许规则,SSH链接会直接断开。)
iptables -A FORWARD -j REJECT

4、屏蔽IP
 

代码如下:
#如果只是想屏蔽IP的话“3、开放指定的端口”可以直接跳过。
#屏蔽单个IP的命令是
iptables -I INPUT -s 123.45.6.7 -j DROP
#封整个段即从123.0.0.1到123.255.255.254的命令
iptables -I INPUT -s 123.0.0.0/8 -j DROP
#封IP段即从123.45.0.1到123.45.255.254的命令
iptables -I INPUT -s 124.45.0.0/16 -j DROP
#封IP段即从123.45.6.1到123.45.6.254的命令是
iptables -I INPUT -s 123.45.6.0/24 -j DROP

5、查看已添加的iptables规则
iptables -L -n
    v:显示详细信息,包括每条规则的匹配包数量和匹配字节数
    x:在 v 的基础上,禁止自动单位换算(K、M) vps侦探
    n:只显示IP地址和端口号,不将ip解析为域名

6、删除已添加的iptables规则
将所有iptables以序号标记显示,执行:
 

代码如下:
iptables -L -n --line-numbers

比如要删除INPUT里序号为8的规则,执行:
 

代码如下:
iptables -D INPUT 8

7、iptables的开机启动及规则保存
CentOS上可能会存在安装好iptables后,iptables并不开机自启动,可以执行一下:
 

代码如下:
chkconfig --level 345 iptables on

将其加入开机启动。

CentOS上可以执行:service iptables save保存规则。

另外更需要注意的是Debian/Ubuntu上iptables是不会保存规则的。

需要按如下步骤进行,让网卡关闭是保存iptables规则,启动时加载iptables规则:

创建/etc/network/if-post-down.d/iptables 文件,添加如下内容:
 

代码如下:
#!/bin/bash
iptables-save > /etc/iptables.rules

执行:chmod +x /etc/network/if-post-down.d/iptables 添加执行权限。

创建/etc/network/if-pre-up.d/iptables 文件,添加如下内容:
 

代码如下:
#!/bin/bash
iptables-restore < /etc/iptables.rules

执行:chmod +x /etc/network/if-pre-up.d/iptables 添加执行权限。

您可能感兴趣的文章:
iptables 日志维护的方法分享
解析 iptables常用规则设置
iptables防火墙之limit限制方法分享
linux下关闭iptables防火墙及selinux的方法
使用iptables屏蔽IP段的方法举例
配置 iptables 静态防火墙
iptables实现路由转发的例子
iptables配置实例详解
一个实用的iptables shell脚本
iptables实例收藏
linux iptables 开启关闭端口的方法
linux iptables入门教程


    
最新技术文章:
▪linux系统中的列出敏感用户的脚本代码
▪a10 config backup for aXAPI
▪一键备份gitolite服务器的Shell脚本
▪nagios 分发文件实现代码
▪阿里云云服务器Linux系统更新yum源Shell脚本
▪一个监控LINUX目录和文件变化的Shell脚本分享
▪Linux下实现SSH免密码登录和实现秘钥的管理、...
▪Shell正则表达式之grep、sed、awk实操笔记
▪3个备份系统文件并邮件发送的Shell脚本分享
▪CentOS 6.3下给PHP添加mssql扩展模块教程
▪监控网站是否可以正常打开的Shell脚本分享
▪shell脚本编程之if语句学习笔记
▪shell脚本编程之循环语句学习笔记
▪shell脚本编程之case语句学习笔记
▪Shell脚本实现的阳历转农历代码分享
▪Shell脚本实现复制文件到多台服务器的代码分...
▪Shell脚本实现批量下载网络图片代码分享
▪Shell脚本实现检测文件是否被修改过代码分享
▪Shell脚本数组用法小结
▪Shell脚本批量重命名文件后缀的3种实现
▪C语言实现的ls命令源码分享
▪Linux下查找后门程序 CentOS 查后门程序的shell脚...
▪Shell 函数参数
▪linux shell 自定义函数方法(定义、返回值、变...
▪Shell实现判断进程是否存在并重新启动脚本分...
▪Shell脚本break和continue命令简明教程
▪Shell脚本函数定义和函数参数
▪让代码整洁、过程清晰的BASH Shell编程技巧
▪shell常用重定向实例讲解
▪awk中RS、ORS、FS、OFS的区别和联系小结
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3