目的:
每天自动接收附件为excel表格的邮件,里面包含客户端IP地址、客户端MAC地址、客户端计算机名、交换机端口、交换机的名字等信息。可以给运维人员带来一些方便,直观的查看那些非法的设备接入交换机的那个端口,方便远程shutdown端口(自动shutdown端口和DHCP拉黑MAC地址,还在编写中)。
思路:
1、用python代码抓取交换机的上面的信息,例如客户端的MAC地址,交换机端口,并把抓取的信息筛选,存入sqlserver数据库。
2、用Powershell抓去DHCP的信息,筛选客户端的MAC地址,计算机名信息存入sqlserver数据库。
3、通过Python代码,调用SQL语句,把输出结果保存到excel表格。
4、通过Python代码,发送邮件。
5、linux通过crontab,Powershell通过自动任务计划,每天定时执行代码和脚本。
代码块
抓取交换机信息代码,并保存到本地的txt。
import pexpect
import sys
import datetime
import os
today=datetime.date.today().strftime('%Y%m%d')
path = "/root/F5/"+today#创建文件夹
os.mkdir(path,777)
ip='x.x.x.x'
passwd='^^^^^'
txt='F51FA-x.x.x.x.txt'
name='<F51FA-JR-S5110-1>'#交换机名字
name1="---- More ----"
child=pexpect.spawn('telnet %s'%ip)#telnet交换机
fout=open('/root/F5/'+today+'/'+txt,'wb+')#输出结果保存到此txt
child.logfile = fout
child.expect('Username:')
child.sendline("admin")
child.expect('(?i)ssword:')
child.sendline("%s"%passwd)
child.expect("%s"%name)
child.sendline("dis lldp neighbor-information list")
child.expect("%s"%name)
child.sendline("dis mac-address")
for i in range(10):
index = child.expect([name1,"%s"%name])#命令输出结果如果需要空格翻页
if ( index == 0 ):
child.send(" ")
else:
child.sendline("quit")#如果还有其它命令可以写在这里
sys.exit()
代码块
powershell抓取DHCP信息,并输出到数据库。
#数据库配置信息
$Database = 'MAC'
$Server = 'xx'
$UserName = 'sa'
$Password = 'xx'
#powershell 抓取DHCP 可以看网页 http://blog.51cto.com/wenzhongxiang/2065645
#读取DHCPLease记录
#$DhcpLeaseResult1 = Get-DhcpServerv4Scope -ComputerName x.x.x.x |