renommé : sisr1/tp01-02/srv-dhcp/interfaces -> sio1/tp01-02/srv-dhcp/interfaces renommé : sisr1/tp01-02/srv-dhcp/isc-dhcp-server -> sio1/tp01-02/srv-dhcp/isc-dhcp-server renommé : sisr1/tp01-02/srv-dhcp/nat.sh -> sio1/tp01-02/srv-dhcp/nat.sh renommé : sisr1/tp01-02/srv-dns1/db.sio1lab.lan -> sio1/tp01-02/srv-dns1/db.sio1lab.lan renommé : sisr1/tp01-02/srv-dns1/db.sio1lab.lan.rev -> sio1/tp01-02/srv-dns1/db.sio1lab.lan.rev renommé : sisr1/tp01-02/srv-dns1/named.conf -> sio1/tp01-02/srv-dns1/named.conf renommé : sisr1/tp01-02/srv-dns1/named.conf.local -> sio1/tp01-02/srv-dns1/named.conf.local renommé : sisr1/tp01-02/srv-dns1/named.conf.options -> sio1/tp01-02/srv-dns1/named.conf.options renommé : sisr1/tp01-02/srv-dns1/resolv.conf -> sio1/tp01-02/srv-dns1/resolv.conf renommé : sisr1/tp01-02/srv-dns2/named.conf.local -> sio1/tp01-02/srv-dns2/named.conf.local renommé : sisr1/tp01-02/srv-dns2/resolv.conf -> sio1/tp01-02/srv-dns2/resolv.conf renommé : sisr1/tp01-02/srv-dns2/usr.sbin.named -> sio1/tp01-02/srv-dns2/usr.sbin.named renommé : sisr1/tp6/squid.conf -> sio1/tp6/squid.conf
7 lines
291 B
Bash
Executable File
7 lines
291 B
Bash
Executable File
#!/bin/bash
|
|
sysctl net.ipv4.ip_forward=1
|
|
nft add table basic_nat_table
|
|
nft add chain basic_nat_table prerouting {type nat hook prerouting priority 0 \; }
|
|
nft add chain basic_nat_table postrouting {type nat hook postrouting priority 0 \; }
|
|
nft add rule basic_nat_table postrouting masquerade
|