SSH登陆进去中文显示乱码
dpkg-reconfigure locales
选择了en_US.UTF-8 、zh_CN.GB2312
默认选择 zh_CN.GB2312 (如果默认选项没有就选zh_CN)
切换到普通用户家目录
在.bashrc最后增加:
export LC_ALL=zh_CN.GB2312

vi /etc/apt/sources.list  将#注释掉
deb cdrom:[Debian GNU/Linux 7.0 _Kali_ - Official Snapshot amd64 LIVE/INSTALL Binary 20140108-17:05]/ kali contrib main non-free


1.安装snmp
apt-get install snmp snmpd
2.配置snmp
vi /etc/snmp/snmpd.conf
注释15行
#agentAddress  udp:127.0.0.1:161
取消注释17行
agentAddress udp:161,udp6:[::1]:161
表示监听所有地址
在44行(system + hrSystem groups only)下添加一行
view   AllView  included .1
修改51行为
rocommunity public  default    -V  AllView
public是团体名
最后重启一下snmp服务就完成了

3.重启服务:
service snmpd restart


修改漏洞扫描团体名

因漏扫是win7操作系统,可以使用mstsc远程登陆到主机上

telnet ip地址:20010

密码:



Centos修改snmpd.conf文件五个地方:
1、com2sec notConfigUser default public #配置snmp团体名默认是public,建议修改

2、将access notConfigGroup "" any noauth exact systemview none none
 更改为access notConfigGroup "" any noauth exact all none none

3、将如下两行前面的注释去掉
## incl/excl subtree maskview all included .1 80
## -or just the mib2 tree-view mib2 included .iso.org.dod.internet.mgmt.mib-2 fc
更改为
incl/excl subtree maskview all included .1 80
-or just the mib2 tree-view mib2 included .iso.org.dod.internet.mgmt.mib-2 fc

4、将下面一行前面的注释去掉
#access notConfigGroup "" any noauth exact roview rwview none
access notConfigGroup "" any noauth exact mib2 none none

service snmpd restart #重新启动snmp服务
/etc/init.d/iptables stop  #关闭iptables