mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
289 B
18 lines
289 B
5 years ago
|
#!/usr/bin/env bash
|
||
6 years ago
|
|
||
|
# Install firewall
|
||
|
|
||
5 years ago
|
script_dir="$(cd -P "$(dirname "$BASH_SOURCE")" && pwd)"
|
||
|
cd $script_dir
|
||
6 years ago
|
. set.sh
|
||
|
|
||
5 years ago
|
ssh_port=${1:-521}
|
||
6 years ago
|
|
||
|
apt-get -y install ufw
|
||
|
|
||
|
ufw logging off
|
||
5 years ago
|
ufw allow in "$ssh_port"/tcp
|
||
5 years ago
|
ufw allow in 27960:27969/tcp
|
||
|
ufw allow in 27960:27969/udp
|
||
6 years ago
|
ufw --force enable
|