Questions tagged [ip6tables]
36 questions
0
votes
0 answers
Separate ip6tables xt_recent
Is is possible to create separate iptables and ip6tables xt_recent?
Like how hashlimit is separated to ipt_hashlimit and ip6t_hashlimit.
So maybe like xt_recent and x6t_recent.

NOYB
- 191
- 7
0
votes
1 answer
ip6tables block thunderbird email
The following ip6tables block thunderbird from retrieving email from my gmail account:
sudo ip6tables -P FORWARD DROP
sudo ip6tables -P INPUT DROP
sudo ip6tables -P OUTPUT DROP
sudo ip6tables -A INPUT -j ACCEPT -i lo
sudo ip6tables -A OUTPUT -j…
user571431
-1
votes
1 answer
Best way to forward whole ipv6 /64 subnet range to single address (on Linux, obv)?
I want to forward incoming connections to any address within an assigned ipv6 /64 subnet on a VPS.
Obviously I can't add a billion individual address to the interface, but perhaps I could use a bogus route with a mangle iptables rule to pretend 1…

Luke Mlsna
- 133
- 4
-1
votes
1 answer
ruleset iptables- user defined chains
I am very new in iptables. Learning to use them. I got a hang of some basic commands from https://help.ubuntu.com/community/IptablesHowTo. However, I didnt find good explanations of examples of a ruleset file which can be applied using the…

Ankur Bhatia
- 113
- 5
-1
votes
0 answers
Route iptable traffic to ip6table
I have 2 servers, server A which users connect to using IPv4, server B which server A tunnels all traffic to server B using ipv6. The question is how to forward all ipv4's incoming traffic on server A through IPv6 tunnel to server B?
In…

xtg
- 1
- 1
-2
votes
1 answer
port forward in INPUT level
I want to change the destination port of the ipv6 packet in the INPUT level.
So I tried to use ip6tables with nat in the INPUT level
but seems this command does not work
# ip6tables -t nat -I INPUT ! -i br0 -p TCP --dport 8080 -j REDIRECT --to-ports…

MOHAMED
- 151
- 7