Linux foxboard 网络监视器

Linux foxboard 网络监视器

我想使用 Foxboard 作为多路由器的简单网络监视器(所有路由器都连接到互联网)。Foxboard 是一台嵌入 Debian 版本的迷你电脑。

我的想法是使用多个虚拟网络设备,如下所示:

  • eth0 192.168.2.10
  • eth0:1 192.168.3.10
  • eth0:2 192.168.4.10

我在这里找到了一个不错的 Python 脚本来 ping 一个外部主机(来自 Ryan Cox 的解决方案): https://stackoverflow.com/questions/316866/ping-a-site-in-python

是否可以将 Debian 配置为当我 ping www.site-a.com 时使用 eth0,而当我 ping www.site-b.com 时使用 eth0:1?

答案1

这取决于各个站点的 IP 地址,但一般来说,这可以通过使用静态路由来实现。您可以通过文件在 Debian 上配置静态路由/etc/network/routes

需要注意的是:如果网站都是同一 IP 地址上的虚拟主机,则您将无法执行此操作。

# Destination  Gateway           Netmask              Interface
192.0.2.25     192.168.2.1       255.255.255.255      eth0
198.51.100.92  192.168.3.1       255.255.255.255      eth0.1

答案2

这是完整的脚本,也许它对任何寻找便宜且低能耗网络监视器的人都很有用(感谢 Ryan Cox,请参阅主题开始)。我认为它也可以在 Raspberry 板上运行。

我创建了一个 cronjob,每 5 分钟运行一次该脚本。

请记住也为 smtp 服务器设置路由,否则邮件将无法到达您:-)


from threading import Thread
import subprocess
from Queue import Queue

num_threads = 4
queue = Queue()
ips = ["8.8.8.8","8.8.4.4","173.194.67.94","217.10.79.9"]
modem = ["modem1 - entrance - network 10.0.0.1","modem2 - basement - network 10.2.0.1","modem3 - office - network 10.3.0.1", "modem4 - office2 - network 10.4.0.1"]
#wraps system ping command
def mail_error(ip):
    password = False
    if ip == "173.194.67.94" or "8.8.8.8":
        smtp_host = "smtphost1"
        poort = 25
    else:
        smtp_host = "smtphost2"
        poort = 587
        password = True
    import smtplib

    from email.mime.text import MIMEText
    text = "Network error ip address %s" % modem[ips.index(ip)]
    msg = MIMEText(text)
    msg['Subject'] = 'Network wrror %s' % modem[ips.index(ip)]
    me = "mymailaddress"
    you = "mymailaddress"
    msg['From'] = me
    msg['To'] = you
    s = smtplib.SMTP(smtp_host,poort)
    if password:
        s.login("username", "pass")
    s.sendmail(me, [you], msg.as_string())
    s.quit()


def pinger(i, q):
    """Pings subnet"""
    while True:
        ip = q.get()
        print "Thread %s: Pinging %s" % (i, ip)
        ret = subprocess.call("ping -c 1 %s" % ip,
                        shell=True,
                        stdout=open('/dev/null', 'w'),
                        stderr=subprocess.STDOUT)
        if ret == 0:
            print "%s: is alive" % ip
        else:
            print "%s: did not respond" % ip
            mail_error(ip)
        q.task_done()
#Spawn thread pool
for i in range(num_threads):

    worker = Thread(target=pinger, args=(i, queue))
    worker.setDaemon(True)
    worker.start()
#Place work in queue
for ip in ips:
    queue.put(ip)
#Wait until worker threads are done to exit    
queue.join()

相关内容