Wired Intelligent Edge

last person joined: yesterday 

Bring performance and reliability to your network with the HPE Aruba Networking Core, Aggregation, and Access layer switches. Discuss the latest features and functionality of your switching devices, and find ways to improve security across your network to bring together a mobile-first solution
Expand all | Collapse all

ip forward-broadcast ACL

This thread has been viewed 16 times
  • 1.  ip forward-broadcast ACL

    Posted Jul 13, 2016 09:28 AM

    Hello,

     

    I have a HPE 5510 switch which is comware 7 based.

    I need “ip forward-broadcast”. So this isn’t hard to configure but in comware 5 it was possible to add an ACL to the “ip forward-broadcast”.

     

    Acl 3001

    rule 10 permit udp source 192.168.200.0 0.0.0.255 destination 10.0.0.255 0 destination-port eq 9

     

    Comware 5: ip forward-broadcast acl 3001

    Comware 7: ip forward-broadcast

     

    So to have less broadcast forwarded how to add a acl to the “ip forward-broadcast”



  • 2.  RE: ip forward-broadcast ACL

    Posted Sep 26, 2016 06:38 AM

    Had the exact same question this morning:
    You can just apply an acl to the interface with 'packet-filter 3001 outbound' (or inbound, depending of your network config).

     

    Your ACL may be:

     

    Acl 3001
      rule 10 permit udp source 192.168.200.0 0.0.0.255 destination 10.0.0.255 0 destination-port eq 9
      rule 15 deny ip destination 10.0.0.255 0
    rule 20 permit ip

    Hope this can help someone avoiding loosing time…



  • 3.  RE: ip forward-broadcast ACL

    Posted Aug 01, 2017 11:16 AM

     

    I am having the same problem. about packet-filter solution, doesn't it block all unicast and multicast traffic too along with broadcast?

     



  • 4.  RE: ip forward-broadcast ACL

    Posted Mar 14, 2018 11:07 AM

    The rules I gave should let directed-broadcast work if coming from 192.168.200.0/24 and to udp port 9 (wake-on-lan), blocking all other directed-broadcast from outside of the LAN (but not multicast, which is 224/4 if my memory doesn't fail here)

     

    This is true with "packet-filter filter route" on the interface you apply acl on, it may block internal broadcast on LAN if "packet-filter filter all" (don't remember which one is the default one…)



  • 5.  RE: ip forward-broadcast ACL

    Posted Sep 04, 2018 12:17 PM

    try this solution based on UDP-Helper, this should work for WOL for Comware 7:

     

     

    Configuration files #

     

    udp-helper enable
    udp-helper port 9 # maybe port 7 too and sometimes 12287 as well
    #
    vlan 1 # Deployment-Server
    #
    vlan 2 # Client Lan
    #
    interface Vlan-interface1
    ip address 10.110.1.1 255.255.0.0
    ip forward-broadcast
    udp-helper server 10.2.1.255
    #

    interface Vlan-interface2

    ip address 10.2.1.2 255.255.0.0

     

    ---snipp---

     

    Ralf