mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-16 15:26:40 +00:00
48 lines
1.9 KiB
Go
48 lines
1.9 KiB
Go
package cmd
|
|
|
|
// Flag constants for system configuration
|
|
const (
|
|
disableClientRoutesFlag = "disable-client-routes"
|
|
disableServerRoutesFlag = "disable-server-routes"
|
|
disableDNSFlag = "disable-dns"
|
|
disableFirewallFlag = "disable-firewall"
|
|
blockLANAccessFlag = "block-lan-access"
|
|
blockInboundFlag = "block-inbound"
|
|
disableIPv6Flag = "disable-ipv6"
|
|
)
|
|
|
|
var (
|
|
disableClientRoutes bool
|
|
disableServerRoutes bool
|
|
disableDNS bool
|
|
disableFirewall bool
|
|
blockLANAccess bool
|
|
blockInbound bool
|
|
disableIPv6 bool
|
|
)
|
|
|
|
func init() {
|
|
// Add system flags to upCmd
|
|
upCmd.PersistentFlags().BoolVar(&disableClientRoutes, disableClientRoutesFlag, false,
|
|
"Disable client routes. If enabled, the client won't process client routes received from the management service.")
|
|
|
|
upCmd.PersistentFlags().BoolVar(&disableServerRoutes, disableServerRoutesFlag, false,
|
|
"Disable server routes. If enabled, the client won't act as a router for server routes received from the management service.")
|
|
|
|
upCmd.PersistentFlags().BoolVar(&disableDNS, disableDNSFlag, false,
|
|
"Disable DNS. If enabled, the client won't configure DNS settings.")
|
|
|
|
upCmd.PersistentFlags().BoolVar(&disableFirewall, disableFirewallFlag, false,
|
|
"Disable firewall configuration. If enabled, the client won't modify firewall rules.")
|
|
|
|
upCmd.PersistentFlags().BoolVar(&blockLANAccess, blockLANAccessFlag, false,
|
|
"Block access to local networks (LAN) when using this peer as a router or exit node")
|
|
|
|
upCmd.PersistentFlags().BoolVar(&blockInbound, blockInboundFlag, false,
|
|
"Block inbound connections. If enabled, the client will not allow any inbound connections to the local machine nor routed networks.\n"+
|
|
"This overrides any policies received from the management service.")
|
|
|
|
upCmd.PersistentFlags().BoolVar(&disableIPv6, disableIPv6Flag, false,
|
|
"Disable IPv6 overlay. If enabled, the client won't request or use an IPv6 overlay address.")
|
|
}
|