Differences between revisions 1 and 2
Revision 1 as of 2021-07-07 02:20:52
Size: 133
Editor: PieterSmit
Comment:
Revision 2 as of 2021-11-30 18:23:22
Size: 729
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 7: Line 7:

== config ==
 * {{{ $ show config }}}

 * Add rule for new port 8883 {{{
firewall {
    ...
    ...
    name InternetAccess {
        default-action drop
        ...
        rule 1300 {
            action accept
            description "Allow tcp:8883 myTraffic"
            destination {
                # address
                port 8883
                # group { port-group <MyPortGrp> }
            }
            protocol tcp
            source {
                group {
                    network-group Internal
                }
            }
        }

}}}

Linux/VyOs-Vyatta

  • Logs in /var/log/messages
    • Not very usefull
  • Debug with tcpdump to see real packets arriving.

config

  •  $ show config 

  • Add rule for new port 8883

    firewall {
        ...
        ...
        name InternetAccess {
            default-action drop
            ...
            rule 1300 {
                action accept
                description "Allow tcp:8883 myTraffic"
                destination {
                    # address 
                    port 8883
                    # group { port-group <MyPortGrp> }
                }
                protocol tcp
                source {
                    group {
                        network-group Internal
                    }
                }
            }

Linux/VyOs-Vyatta (last edited 2022-07-07 23:09:30 by PieterSmit)