Kali/IPv6: Difference between revisions
From charlesreid1
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
==disable ipv6== | ==disable ipv6== | ||
===temporarily=== | |||
<pre> | <pre> | ||
sysctl -w net.ipv6.conf.all.disable_ipv6=1 | sysctl -w net.ipv6.conf.all.disable_ipv6=1 | ||
sysctl -w net.ipv6.conf.default.disable_ipv6=1 | sysctl -w net.ipv6.conf.default.disable_ipv6=1 | ||
sysctl -w net.ipv6.conf.lo.disable_ipv6=1 | |||
</pre> | |||
===permanently=== | |||
<pre> | |||
echo "sysctl -w net.ipv6.conf.all.disable_ipv6=1" > /etc/sysctl.conf | |||
echo "sysctl -w net.ipv6.conf.default.disable_ipv6=1" > /etc/sysctl.conf | |||
echo "sysctl -w net.ipv6.conf.lo.disable_ipv6=1" > /etc/sysctl.conf | |||
</pre> | </pre> | ||
==enable ipv6== | ==enable ipv6== | ||
===temporarily=== | |||
<pre> | <pre> | ||
sysctl -w net.ipv6.conf.all.disable_ipv6=0 | sysctl -w net.ipv6.conf.all.disable_ipv6=0 | ||
sysctl -w net.ipv6.conf.default.disable_ipv6=0 | sysctl -w net.ipv6.conf.default.disable_ipv6=0 | ||
</pre> | |||
===permanently=== | |||
<pre> | |||
<pre> | |||
echo "sysctl -w net.ipv6.conf.all.disable_ipv6=0" > /etc/sysctl.conf | |||
echo "sysctl -w net.ipv6.conf.default.disable_ipv6=0" > /etc/sysctl.conf | |||
echo "sysctl -w net.ipv6.conf.lo.disable_ipv6=0" > /etc/sysctl.conf | |||
</pre> | </pre> | ||
Revision as of 08:10, 10 December 2019
disable ipv6
temporarily
sysctl -w net.ipv6.conf.all.disable_ipv6=1 sysctl -w net.ipv6.conf.default.disable_ipv6=1 sysctl -w net.ipv6.conf.lo.disable_ipv6=1
permanently
echo "sysctl -w net.ipv6.conf.all.disable_ipv6=1" > /etc/sysctl.conf echo "sysctl -w net.ipv6.conf.default.disable_ipv6=1" > /etc/sysctl.conf echo "sysctl -w net.ipv6.conf.lo.disable_ipv6=1" > /etc/sysctl.conf
enable ipv6
temporarily
sysctl -w net.ipv6.conf.all.disable_ipv6=0 sysctl -w net.ipv6.conf.default.disable_ipv6=0
permanently
<pre> echo "sysctl -w net.ipv6.conf.all.disable_ipv6=0" > /etc/sysctl.conf echo "sysctl -w net.ipv6.conf.default.disable_ipv6=0" > /etc/sysctl.conf echo "sysctl -w net.ipv6.conf.lo.disable_ipv6=0" > /etc/sysctl.conf
flags
| Networking pages and notes about computer networks.
Man in the Middle attack vectors on wired networks: Man in the Middle/Wired Packet analysis with Wireshark: Wireshark Packet Analysis Linux networking: Linux/Networking
Using Aircrack: Aircrack Many Ways to Crack a Wifi: Cracking Wifi
Linux/Networking · Linux/SSH · Linux/File Server
Notes on OpenVPN: OpenVPN Setting Up a Static Key VPN: OpenVPN/Static Key
Domain Name Servers: DNS · Linux/DNS IP Version 6: IPv6
Wireshark · SSH · Stunnel · Tor · Ettercap · Aircrack · Tcpdump
Tunnels · HTTP and HTTPS · SSH Tunnels · Linux/SSH
|