première version du dépôt démo

This commit is contained in:
jmd
2025-01-19 09:30:55 +01:00
parent 662c55c535
commit 6930626684
9 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
* **nat.sh** : script activant la NAT dynamique sans filtrage
* A placer à /root/nat.sh
* Rendre exécutable : ''chmod +x /root/nat.sh''
* **nat.service** : service lançant le script au démarrage
* A placer à /etc/systemd/system/nat.service
* Activer le service : ''systemctl enable nat.service''

View File

@@ -0,0 +1,13 @@
[Unit]
Description=execute /root/nat.sh
After=default.target
[Service]
ExecStart=bash /root/nat.sh
[Install]
WantedBy=default.target

View File