English | 简体ä¸ć–‡
Go-xtables(production-ready) is a wrapper for the iptables, ebtables, and arptables utils. It provides full features, extensions and abstractions from Netfilter, making it very convenient to use.
Check out the iptables godoc and ebtables godoc to learn about the 70+ match
capabilities, 50+ target
capabilities, and 10+ option
capabilities.
Matches:
- âś… MatchTypeAddrType
- âś… MatchTypeAH
- âś… MatchTypeBPF
- âś… MatchTypeCGroup
- âś… MatchTypeCluster
- âś… MatchTypeComment
- âś… MatchTypeConnBytes
- âś… MatchTypeConnLabel
- âś… MatchTypeConnLimit
- âś… MatchTypeConnMark
- âś… MatchTypeConnTrack
- âś… MatchTypeCPU
- âś… MatchTypeDCCP
- âś… MatchTypeDestination
- âś… MatchTypeDevGroup
- âś… MatchTypeDSCP
- âś… MatchTypeDst
- âś… MatchTypeECN
- âś… MatchTypeESP
- âś… MatchTypeEUI64
- âś… MatchTypeFrag
- âś… MatchTypeHashLimit
- âś… MatchTypeHBH
- âś… MatchTypeHelper
- âś… MatchTypeHL
- âś… MatchTypeICMP
- âś… MatchTypeInInterface
- âś… MatchTypeIPRange
- âś… MatchTypeIPv4
- âś… MatchTypeIPv6
- âś… MatchTypeIPv6Header
- âś… MatchTypeIPVS
- âś… MatchTypeLength
- âś… MatchTypeLimit
- âś… MatchTypeMAC
- âś… MatchTypeMark
- âś… MatchTypeMH
- âś… MatchTypeMultiPort
- âś… MatchTypeNFAcct
- âś… MatchTypeOSF
- âś… MatchTypeOutInterface
- âś… MatchTypeOwner
- âś… MatchTypePhysDev
- âś… MatchTypePktType
- âś… MatchTypePolicy
- âś… MatchTypeProtocol
- âś… MatchTypeQuota
- âś… MatchTypeRateEst
- âś… MatchTypeRealm
- âś… MatchTypeRecent
- âś… MatchTypeRPFilter
- âś… MatchTypeRT
- âś… MatchTypeSCTP
- âś… MatchTypeSet
- âś… MatchTypeSocket
- âś… MatchTypeSource
- âś… MatchTypeSRH
- âś… MatchTypeState
- âś… MatchTypeStatistic
- âś… MatchTypeString
- âś… MatchTypeTCP
- âś… MatchTypeTCPMSS
- âś… MatchTypeTime
- âś… MatchTypeTOS
- âś… MatchTypeTTL
- âś… MatchTypeU32
- âś… MatchTypeUDP
Targets:
- âś… TargetTypeAccept
- âś… TargetTypeDrop
- âś… TargetTypeReturn
- âś… TargetTypeJumpChain
- âś… TargetTypeGotoChain
- âś… TargetTypeAudit
- âś… TargetTypeCheckSum
- âś… TargetTypeClassify
- âś… TargetTypeClusterIP
- âś… TargetTypeConnMark
- âś… TargetTypeConnSecMark
- âś… TargetTypeCT
- âś… TargetTypeDNAT
- âś… TargetTypeDNPT
- âś… TargetTypeDSCP
- âś… TargetTypeECN
- âś… TargetTypeHL
- âś… TargetTypeHMark
- âś… TargetTypeIdleTimer
- âś… TargetTypeLED
- âś… TargetTypeLog
- âś… TargetTypeMark
- âś… TargetTypeMasquerade
- âś… TargetTypeMirror
- âś… TargetTypeNetmap
- âś… TargetTypeNFLog
- âś… TargetTypeNFQueue
- âś… TargetTypeNoTrack
- âś… TargetTypeRateEst
- âś… TargetTypeRedirect
- âś… TargetTypeReject
- âś… TargetTypeSame
- âś… TargetTypeSecMark
- âś… TargetTypeSet
- âś… TargetTypeSNAT
- âś… TargetTypeSNPT
- âś… TargetTypeSYNProxy
- âś… TargetTypeTCPMSS
- âś… TargetTypeTCPOptStrip
- âś… TargetTypeTEE
- âś… TargetTypeTOS
- âś… TargetTypeTProxy
- âś… TargetTypeTrace
- âś… TargetTypeTTL
- âś… TargetTypeULog
- Multiple tables(iptables, ebtables, arptables) to support.
- Full featured matches, options, watchers and other extensions.
- Addtional search.
- Chainable pattern.
- Dryrun commands to writer.
- Log control(inner log, logrus etc.).
package main
import (
"log"
"github.com/singchia/go-xtables/iptables"
"github.com/singchia/go-xtables/pkg/network"
)
func main() {
ipt := iptables.NewIPTables().Table(iptables.TableTypeFilter).Chain(iptables.ChainTypeINPUT).MatchProtocol(false, network.ProtocolTCP)
// allow ssh, http and https
err := ipt.MatchMultiPort(iptables.WithMatchMultiPortDstPorts(false, 22, 80, 443)).TargetAccept().Insert()
if err != nil {
log.Fatal(err)
}
// drop others
err = iptables.NewIPTables().Table(iptables.TableTypeFilter).Chain(iptables.ChainTypeINPUT).Policy(iptables.TargetTypeDrop)
if err != nil {
log.Fatal(err)
}
}
iptables.NewIPTables().
Table(iptables.TableTypeFilter).
Chain(iptables.ChainTypeINPUT).
MatchProtocol(false, network.ProtocolTCP).
MatchTCP(iptables.WithMatchTCPDstPort(false, 2432)).
TargetDrop().
Append()
iptables.NewIPTables().
Table(iptables.TableTypeFilter).
Chain(iptables.ChainTypeINPUT).
MatchSource(false, "192.168.1.100").
TargetAccept().
Append()
rules, err := iptables.NewIPTables().
Table(iptables.TableTypeFilter).
Chain(iptables.ChainTypeINPUT).
MatchSource(false, "192.168.1.100").
TargetAccept().
FindRules()
iptables.NewIPTables().Flush()
iptables.NewIPTables().
Table(iptables.TableTypeFilter).
Chain(iptables.ChainTypeINPUT).
MatchProtocol(false, network.ProtocolTCP).
MatchTCP(iptables.WithMatchTCPDstPort(false, 80)).
MatchLimit(iptables.WithMatchLimit(xtables.Rate{10, xtables.Minute})).
TargetAccept().
Append()
iptables.NewIPTables().
Table(iptables.TableTypeMangle).
Chain(iptables.ChainTypePREROUTING).
MatchProtocol(false, network.ProtocolTCP).
MatchTCP(iptables.WithMatchTCPDstPort(false, 2432)).
TargetTEE(net.ParseIP("192.168.1.1")).
Insert()
This example uses ebtables. Please note that this rule applies to the linux-bridge
, so make sure that the network interface is being hosted by the bridge.
ebtables.NewEBTables().
Table(ebtables.TableTypeFilter).
Chain(ebtables.ChainTypeINPUT).
MatchSource(false, "00:11:22:33:44:55").
TargetDrop().
Append()
custom := "SYN_FLOOD"
ipt := iptables.NewIPTables().Table(iptables.TableTypeFilter)
ipt.NewChain(custom)
ipt.Chain(iptables.ChainTypeINPUT).
MatchProtocol(false, network.ProtocolTCP).
MatchTCP(iptables.WithMatchTCPSYN(false)).
TargetJumpChain(custom).
Append()
userDefined := iptables.ChainTypeUserDefined
userDefined.SetName(custom)
rate := xtables.Rate{1, xtables.Second}
ipt.Chain(userDefined).
MatchLimit(
iptables.WithMatchLimit(rate),
iptables.WithMatchLimitBurst(3)).
TargetReturn().
Append()
ipt.Chain(userDefined).
TargetDrop().
Append()
iptables.NewIPTables().
Table(iptables.TableTypeFilter).
Chain(iptables.ChainTypeINPUT).
MatchProtocol(false, network.ProtocolICMP).
MatchICMP(false, network.ICMPType(network.EchoRequest)).
TargetDrop().
Append()
ipt := iptables.NewIPTables().Table(iptables.TableTypeFilter)
ipt.Chain(iptables.ChainTypeINPUT).
MatchInInterface(false, "lo").
TargetAccept().
Append()
ipt.Chain(iptables.ChainTypeINPUT).
MatchState(iptables.ESTABLISHED | iptables.RELATED).
TargetAccept().
Append()
ipt.Chain(iptables.ChainTypeINPUT).
MatchProtocol(false, network.ProtocolTCP).
MatchTCP(iptables.WithMatchTCPDstPort(false, 22)).
TargetAccept().
Append()
ipt.Chain(iptables.ChainTypeINPUT).Policy(iptables.TargetTypeDrop)
ipt.Chain(iptables.ChainTypeFORWARD).Policy(iptables.TargetTypeDrop)
ipt.Chain(iptables.ChainTypeOUTPUT).Policy(iptables.TargetTypeAccept)
Starting from Linux kernel version 4.18, nftables became part of the kernel and gradually replaced iptables. Therefore, distributions using Linux 4.18 and higher versions typically use nftables instead of iptables. Since nftables is not fully compatible with iptables, if you still want to continue using go-xtables, it is best to switch to iptables to continue using it when using these distributions.
The following distributions need to pay attention to compatibility:
- Debian 10(Buster) and higher versions
- Ubuntu 18.04(Bionic Beaver) and higher versions.
- Centos 8 and higher versions.
- Fedora 18 and higher versions.
- OpenSUSE Leap 15.2 and higher versions.
- Arch Linux
If you find any bug, please submit the issue, and we will respond in a short time.
If you want to contribute new features or help solve project problems, please feel free to submit a PR:
- Maintain consistent code style
- Submit one feature at a time
- Include unit tests with the code you submit
Released under the Apache License 2.0