- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 22 for ZONE (0.12 sec)
-
cni/pkg/iptables/testdata/default_ipv6.golden
COMMIT * raw -N ISTIO_OUTPUT -N ISTIO_PRERT -A PREROUTING -j ISTIO_PRERT -A OUTPUT -j ISTIO_OUTPUT -A ISTIO_OUTPUT -p udp -m mark --mark 0x539/0xfff -m udp --dport 53 -j CT --zone 1 -A ISTIO_PRERT -p udp -m mark ! --mark 0x539/0xfff -m udp --sport 53 -j CT --zone 1 COMMIT * mangle -N ISTIO_PRERT -N ISTIO_OUTPUT -A PREROUTING -j ISTIO_PRERT -A OUTPUT -j ISTIO_OUTPUT
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Sep 25 20:54:34 UTC 2024 - 2.6K bytes - Viewed (0) -
cni/pkg/iptables/testdata/tproxy_ipv6.golden
COMMIT * raw -N ISTIO_OUTPUT -N ISTIO_PRERT -A PREROUTING -j ISTIO_PRERT -A OUTPUT -j ISTIO_OUTPUT -A ISTIO_OUTPUT -p udp -m mark --mark 0x539/0xfff -m udp --dport 53 -j CT --zone 1 -A ISTIO_PRERT -p udp -m mark ! --mark 0x539/0xfff -m udp --sport 53 -j CT --zone 1 COMMIT * mangle -N ISTIO_PRERT -N ISTIO_OUTPUT -A PREROUTING -j ISTIO_PRERT -A OUTPUT -j ISTIO_OUTPUT
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Sep 25 20:54:34 UTC 2024 - 3K bytes - Viewed (0) -
cni/pkg/iptables/testdata/default.golden
COMMIT * raw -N ISTIO_OUTPUT -N ISTIO_PRERT -A PREROUTING -j ISTIO_PRERT -A OUTPUT -j ISTIO_OUTPUT -A ISTIO_OUTPUT -p udp -m mark --mark 0x539/0xfff -m udp --dport 53 -j CT --zone 1 -A ISTIO_PRERT -p udp -m mark ! --mark 0x539/0xfff -m udp --sport 53 -j CT --zone 1
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Sep 25 20:54:34 UTC 2024 - 1.3K bytes - Viewed (0) -
cni/pkg/iptables/testdata/tproxy.golden
COMMIT * raw -N ISTIO_OUTPUT -N ISTIO_PRERT -A PREROUTING -j ISTIO_PRERT -A OUTPUT -j ISTIO_OUTPUT -A ISTIO_OUTPUT -p udp -m mark --mark 0x539/0xfff -m udp --dport 53 -j CT --zone 1 -A ISTIO_PRERT -p udp -m mark ! --mark 0x539/0xfff -m udp --sport 53 -j CT --zone 1
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Sep 25 20:54:34 UTC 2024 - 1.5K bytes - Viewed (0) -
istioctl/pkg/writer/ztunnel/configdump/api.go
// See the License for the specific language governing permissions and // limitations under the License. package configdump type Locality struct { Region string `json:"region,omitempty"` Zone string `json:"zone,omitempty"` Subzone string `json:"subzone,omitempty"` } type ZtunnelWorkload struct { UID string `json:"uid"` WorkloadIPs []string `json:"workloadIps"`
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Jul 30 17:26:39 UTC 2024 - 6.1K bytes - Viewed (0) -
lib/time/update.bash
#!/bin/bash # Copyright 2012 The Go Authors. All rights reserved. # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. # This script rebuilds the time zone files using files # downloaded from the ICANN/IANA distribution. # # To prepare an update for a new Go release, # consult https://www.iana.org/time-zones for the latest versions, # update CODE and DATA below, and then run # # ./update.bash -commit
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Sep 23 14:25:08 UTC 2024 - 1.8K bytes - Viewed (0) -
README.md
```sh firewall-cmd --get-active-zones ``` This command gets the active zone(s). Now, apply port rules to the relevant zones returned above. For example if the zone is `public`, use ```sh firewall-cmd --zone=public --add-port=9000/tcp --permanent ```
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Oct 13 13:34:11 UTC 2024 - 18.2K bytes - Viewed (0) -
internal/event/target/postgresql.go
) const ( psqlTableExists = `SELECT 1 FROM %s;` psqlCreateNamespaceTable = `CREATE TABLE %s (key VARCHAR PRIMARY KEY, value JSONB);` psqlCreateAccessTable = `CREATE TABLE %s (event_time TIMESTAMP WITH TIME ZONE NOT NULL, event_data JSONB);` psqlUpdateRow = `INSERT INTO %s (key, value) VALUES ($1, $2) ON CONFLICT (key) DO UPDATE SET value = EXCLUDED.value;` psqlDeleteRow = `DELETE FROM %s WHERE key = $1;`
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Sep 06 23:06:30 UTC 2024 - 13.3K bytes - Viewed (0) -
cni/pkg/iptables/iptables.go
"-m", "udp", "--dport", "53", "-j", "CT", "--zone", "1", ) // Upstream --> Proxy return packets iptablesBuilder.AppendRule( iptableslog.UndefinedCommand, ChainInpodPrerouting, iptablesconstants.RAW, "-p", "udp", "-m", "mark", "!", "--mark", inpodMark, "-m", "udp", "--sport", "53", "-j", "CT", "--zone", "1", ) }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Oct 15 15:39:28 UTC 2024 - 23.3K bytes - Viewed (0) -
cmd/net.go
// isHostIP - helper for validating if the provided arg is an ip address. func isHostIP(ipAddress string) bool { host, _, err := net.SplitHostPort(ipAddress) if err != nil { host = ipAddress } // Strip off IPv6 zone information. if i := strings.Index(host, "%"); i > -1 { host = host[:i] } return net.ParseIP(host) != nil } // extractHostPort - extracts host/port from many address formats
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Jun 19 14:34:00 UTC 2024 - 9.6K bytes - Viewed (0)