etc
home
default
.config
.fonts
.local
scripts
append-urls-to-titles
booksplit
clean-syncthing-conflicts
convert-to-audio
create-playlist
del-macos-folders
generate-playlists
hash-filenames
list-packages
mp3-to-opus
proverb
record-screen
record-screen-no-audio
refresh-screens
remove-exif
restart-audio
restart-bluetooth
screenshot
scrub-ufw
sort-by-length
tag
titles-to-youtube-playlist
update-mirrors
wget-titles-from-urls
youtube-archive
youtube-archive-audio
youtube-audio
.bashrc
.profile
.tool-versions
.xprofile
.gitignore
packages.txt
preview.png
readme.md
add bashrc ignore xauthority add autounlocking keepass desktop entry add fonts for waybar add alacritty config move scripts location and adjust bashrc use materia theme sway and lockscreen add list packages script add ranger desktop item add mpd config add indicator ring to swaylock remove mpd password add global asdf tool versions add mako config update keys add swaylock theme add suspend to lock config move ssh commands to aliases tweak mpd section in waybar add kanshi config for work update bashrc
17 lines
390 B
Bash
Executable File
17 lines
390 B
Bash
Executable File
#!/bin/sh
|
|
echo "Stopping firewall and allowing everyone..."
|
|
ipt="/usr/bin/iptables"
|
|
## Failsafe - die if /sbin/iptables not found
|
|
[ ! -x "$ipt" ] && { echo "$0: \"${ipt}\" command not found."; exit 1; }
|
|
$ipt -P INPUT ACCEPT
|
|
$ipt -P FORWARD ACCEPT
|
|
$ipt -P OUTPUT ACCEPT
|
|
$ipt -F
|
|
$ipt -X
|
|
$ipt -t nat -F
|
|
$ipt -t nat -X
|
|
$ipt -t mangle -F
|
|
$ipt -t mangle -X
|
|
$ipt iptables -t raw -F
|
|
$ipt -t raw -X
|