<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
	<id>https://wiki.ixheim.de/index.php?action=history&amp;feed=atom&amp;title=IPv6_Dual_Stack_Lab_Linux_Firewall</id>
	<title>IPv6 Dual Stack Lab Linux Firewall - Versionsgeschichte</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.ixheim.de/index.php?action=history&amp;feed=atom&amp;title=IPv6_Dual_Stack_Lab_Linux_Firewall"/>
	<link rel="alternate" type="text/html" href="https://wiki.ixheim.de/index.php?title=IPv6_Dual_Stack_Lab_Linux_Firewall&amp;action=history"/>
	<updated>2026-06-29T16:42:37Z</updated>
	<subtitle>Versionsgeschichte dieser Seite in Xinux Wiki</subtitle>
	<generator>MediaWiki 1.35.1</generator>
	<entry>
		<id>https://wiki.ixheim.de/index.php?title=IPv6_Dual_Stack_Lab_Linux_Firewall&amp;diff=50934&amp;oldid=prev</id>
		<title>Thomas.will: Die Seite wurde neu angelegt: „=Forwarding einschalten= *sysctl -p  net.ipv4.ip_forward = 1  net.ipv6.conf.all.forwarding = 1 =Interfaces und Routing= *cat /etc/network/interfaces &lt;pre&gt; #Wan…“</title>
		<link rel="alternate" type="text/html" href="https://wiki.ixheim.de/index.php?title=IPv6_Dual_Stack_Lab_Linux_Firewall&amp;diff=50934&amp;oldid=prev"/>
		<updated>2024-01-11T05:50:52Z</updated>

		<summary type="html">&lt;p&gt;Die Seite wurde neu angelegt: „=Forwarding einschalten= *sysctl -p  net.ipv4.ip_forward = 1  net.ipv6.conf.all.forwarding = 1 =Interfaces und Routing= *cat /etc/network/interfaces &amp;lt;pre&amp;gt; #Wan…“&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;=Forwarding einschalten=&lt;br /&gt;
*sysctl -p&lt;br /&gt;
 net.ipv4.ip_forward = 1&lt;br /&gt;
 net.ipv6.conf.all.forwarding = 1&lt;br /&gt;
=Interfaces und Routing=&lt;br /&gt;
*cat /etc/network/interfaces&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#Wan Schnittstelle&lt;br /&gt;
auto ens4&lt;br /&gt;
iface ens4 inet6 static&lt;br /&gt;
 address 2a02:24d8:71:2441::2/64&lt;br /&gt;
 gateway 2a02:24d8:71:2441::1&lt;br /&gt;
&lt;br /&gt;
iface ens4 inet4 static&lt;br /&gt;
 address 194.59.156.163/27 &lt;br /&gt;
 gateway 194.59.156.161&lt;br /&gt;
&lt;br /&gt;
#Lan Schnittstelle&lt;br /&gt;
iface ens5 inet4 static&lt;br /&gt;
 address 192.168.44.1/24&lt;br /&gt;
 #IPv4 Rounting&lt;br /&gt;
 post-up ip -4 route add 192.168.45.0/24 via 192.168.44.2 &lt;br /&gt;
 post-up ip -4 route add 192.168.46.0/24 via 192.168.44.2 &lt;br /&gt;
 post-up ip -4 route add 192.168.47.0/24 via 192.168.44.2 &lt;br /&gt;
&lt;br /&gt;
auto ens5&lt;br /&gt;
iface ens5 inet6 static&lt;br /&gt;
 address 2a02:24d8:71:2444::1/64&lt;br /&gt;
 #IPv6 Rounting&lt;br /&gt;
 post-up ip -6 route add 2a02:24d8:71:2445::0/64 via 2a02:24d8:71:2444::2&lt;br /&gt;
 post-up ip -6 route add 2a02:24d8:71:2446::0/64 via 2a02:24d8:71:2444::2&lt;br /&gt;
 post-up ip -6 route add 2a02:24d8:71:2447::0/64 via 2a02:24d8:71:2444::2&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
=nftables mit Nat=&lt;br /&gt;
;noch unsicher&lt;br /&gt;
*cat /etc/nftables.conf &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/usr/sbin/nft -f&lt;br /&gt;
&lt;br /&gt;
flush ruleset&lt;br /&gt;
&lt;br /&gt;
table inet filter {&lt;br /&gt;
	chain input {&lt;br /&gt;
		type filter hook input priority filter;&lt;br /&gt;
	}&lt;br /&gt;
	chain forward {&lt;br /&gt;
		type filter hook forward priority filter;&lt;br /&gt;
	}&lt;br /&gt;
	chain output {&lt;br /&gt;
		type filter hook output priority filter;&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table ip nat {&lt;br /&gt;
	chain postrouting {&lt;br /&gt;
		type nat hook postrouting priority 100;&lt;br /&gt;
		oif ens4 masquerade&lt;br /&gt;
	 }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Thomas.will</name></author>
	</entry>
</feed>