- 1、本文档共6页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
中科大高级计算机网络实验报告
防火墙实验报告
一.实验过程
编写Python源代码,命名为pyretic_firewall.py。 保存在~/pyretic/pyretic/examples中。
编写firewall-policies.csv源文件。保存在~/pyretic/pyretic/examples中。
在虚拟机mininet仿真器中创建网络拓扑。
在宿主机中连接虚拟机,运行程序。
运用tcpdump测试实验结果。
二.pyretic_firewall.py源代码及重要代码解释
from pyretic.lib.corelib import *
from pyretic.lib.std import *
#以上代码引用库函数
# insert the name of the module and policy you want to import
from pyretic.examples.pyretic_switch import act_like_switch
import os
import csv
from csv import DictReader
#以上代码引用自己所需的一些模块
policy_file = %s/pyretic/pyretic/examples/firewall-policies.csv % os.environ[ HOME]
#以上代码为指定引用的文件的路径
#以下代码为main函数
def main():
# start with a policy that doesnt match any packets
# 初始化not_allowed变量
not_allowed = none
# and sdd traffic that isnt allowed
# read the firewall-policies.csv
#打开.csv文件并读取文件内容
with open(policy_file, r) as csvfile:
dictreader = DictReader(csvfile)
#如果d在dictreader中,则添加到not_allowed 中
for d in dictreader:
#对不允许的路由进行匹配
not_allowed = not_allowed + (match(srcmac=MAC(d[mac_0]))match(dstmac=MAC(d[mac_1]))) + (match(srcmac=MAC(d[mac_1]))match(dstmac=MAC(d[mac_0])))
#express allowed traffic in terms of not_allowed - hint use~
#将不允许的路由取反即为允许路由
allowed = ~not_allowed
# and only send allowed traffic to the mac learning (act_like_switch) logic
# 将允许的路由作为pyretic_switch中act_like_switch()的输入
return allowedact_like_switch()
三.firewall-policies.csv 文件内容:
四.运行结果截图及结果解释
(1)在虚拟机中运行程序,结果如下所示:
(2)打开Xming,利用Putty远程登录虚拟机:
登录后结果:
(3)创建含有6台Host的网络拓扑,命令及运行结果如下图:
(4)打开6台Host的xterm,结果如图:
(5)在终端4,5,6的xterm中,运行tcpdump:
(6)测试实验结果
① 用h1 ping h4 ,测试结果下图所示,h1 ping h4 失败,说明设置的防火墙生效。
②用h2 ping h5 ,测试结果与上图类似,h2 ping h5失败,说明设置的防火墙生效。
③用h2 ping h5 ,测试结果与上图类似,h2 ping h5失败,说明设置的防火墙生效。
④用h1 ping h2 ,测试结果如下图,h1 ping h2 成功,说明不在.csv 文件中的终端可以相互通信。
⑤验证其余不在.csv 文件中的终端,都可以通信。
五. 实验总结
由于实验过程中对于Python语言运用的不熟悉,导致在写pyretic_firewall.py文件时,出现很多次错误。不过,最终纠正了错误,完成了实验。在本次实验中,实现了通过文件调用作为防火墙原则的功能,可为以后防火墙的设置减轻不少工作量。
文档评论(0)