博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
利用路由器的流量导出功能部署IPS
阅读量:6300 次
发布时间:2019-06-22

本文共 2580 字,大约阅读时间需要 8 分钟。

1.拓扑图:

 
参考:
通过google搜索,,sensor接口的MAC地址,可以用service帐号登录IPS,ifconfig -a获得,如下图所示:

2.基本配置:
R1:
interface FastEthernet0/0
 ip address 10.1.13.1 255.255.255.0
 no shut
ip route 0.0.0.0 0.0.0.0 10.1.13.3
R2:
interface FastEthernet0/0
 ip address 10.1.23.2 255.255.255.0
 no shut
ip route 0.0.0.0 0.0.0.0 10.1.23.3
R3:
interface FastEthernet0/0
 ip address 10.1.13.3 255.255.255.0
 no shut
interface FastEthernet0/1
 ip address 10.1.23.3 255.255.255.0
 no shut
3.路由器IP Traffic Export简单配置:
①创建流量导出配置文件:
ip traffic-export profile test
  interface FastEthernet1/0
  mac-address 000c.2920.d8d5 <这是IDS的MAC,一定是直连或者同一VLAN>
-------mac为接收流量的IPS的sensor接口的mac,可以通过service帐号登录IPS运行ifconfig -a命令获得。
②在需要导出流量的接口应用配置文件:
interface FastEthernet0/0
 ip traffic-export apply test
4.IPS的配置:
A.确认g0/1接口已经enabled
B.将g0/1关联到virtual sensor:
C.大量的ping可以在IPS上看到事件:
R1#ping 10.1.23.2 repeat 100
Type escape sequence to abort.
Sending 100, 100-byte ICMP Echos to 10.1.23.2, timeout is 2 seconds:
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Success rate is 100 percent (100/100), round-trip min/avg/max = 4/47/172 ms
R1#
 
evIdsAlert: eventId=1185793501059155079  vendor=Cisco  severity=informational 
  originator:  
    hostId: ips4215 
    appName: sensorApp 
    appInstanceId: 340 
  time: 2012年8月19日 上午09时57分50秒  offset=0  timeZone=UTC 
  signature:   description=ICMP Echo Request  id=2004  version=S1 
    subsigId: 0 
  interfaceGroup:  
  vlan: 0 
  participants:  
    attacker:  
      addr: 10.1.13.1  locality=OUT 
    target:  
      addr: 10.1.23.2  locality=OUT 
  actions:  
    denyAttackerServicePairRequestedNotPerformed: true 
  riskRatingValue: 25 
  interface: ge0_1 
  protocol: icmp 
evIdsAlert: eventId=1185793501059155080  vendor=Cisco  severity=medium 
  originator:  
    hostId: ips4215 
    appName: sensorApp 
    appInstanceId: 340 
  time: 2012年8月19日 上午09时57分51秒  offset=0  timeZone=UTC 
  signature:   description=ICMP Flood  id=2152  version=S1 
    subsigId: 0 
  interfaceGroup:  
  vlan: 0 
  participants:  
    attacker:  
      addr: 10.1.13.1  locality=OUT 
    target:  
      addr: 10.1.23.2  locality=OUT 
  riskRatingValue: 75 
  interface: ge0_1 
  protocol: icmp 
4.路由器IP Traffic Export其他配置:
A.导出双向流量:
 ip traffic-export profile test
  interface FastEthernet1/0
  bidirectional
  mac-address 000c.2920.d8d5
B.流量过滤:
 ip traffic-export profile test
  interface FastEthernet1/0
  bidirectional
  incoming access-list incoming.acl
  outgoing access-list outgoing.acl
  mac-address 000c.2920.d8d5
B.流量采样:
  ip traffic-export profile test
  interface FastEthernet1/0
  bidirectional
  incoming access-list incoming.acl
  outgoing access-list outgoing.acl
  mac-address 000c.2920.d8d5
  incoming sample one-in-every 2
  outgoing sample one-in-every 3
 

转载地址:http://amrta.baihongyu.com/

你可能感兴趣的文章
学习Less-看这篇就够了
查看>>
ViewPager源码分析(一) 创建与销毁Item
查看>>
PHP的引用,你知道多少?
查看>>
8、使用 Spring Boot 搭建的一个 Spring MVC 示例(持续更新中)
查看>>
Laravel 生成 Gravatar 头像地址的优雅姿势
查看>>
[rust! #001] rust 中的基本类型 (primitive types)
查看>>
从零开始的webpack生活-0x006:providerPlugin全局定义
查看>>
PHPRAP v1.0.5版本发布了,修复BUG及注册页面增加注册口令项
查看>>
一个PHP文件搞定微信支付系列之现金红包
查看>>
Spring Cloud Zuul中路由配置细节
查看>>
Happy Number
查看>>
PHP错误与异常处理
查看>>
Vue 组件
查看>>
angular-cli配置css,js不起作用详解
查看>>
数据同步——otter
查看>>
【MySQL笔记】七种JOIN的SQL
查看>>
剖析Laravel队列系统--Worker
查看>>
接口环境很多?静态资源要放cdn?不用修改代码,用webpack就可以(vue)
查看>>
1. TestNg与Spring的集成
查看>>
不可错过的android好文 - 收藏集 - 掘金
查看>>