| Server IP : 127.0.1.1 / Your IP : 216.73.216.152 Web Server : Apache/2.4.52 (Ubuntu) System : Linux bahcrestlinepropertiesllc 5.15.0-113-generic #123-Ubuntu SMP Mon Jun 10 08:16:17 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/augeas/lenses/dist/tests/ |
Upload File : |
module Test_lokkit =
let conf = "# Configuration file for system-config-firewall
--enabled
--port=111:tcp
-p 111:udp
-p 2020-2049:tcp
--port=5900-5910:tcp
--custom-rules=ipv4:filter:/var/lib/misc/iptables-forward-bridged
-s dns
--service=ssh
--trust=trust1
--masq=eth42
--block-icmp=5
-t trust0
--addmodule=fancy
--removemodule=broken
--forward-port=if=forw0:port=42:proto=tcp:toport=42:toaddr=192.168.0.42
--selinux=permissive
"
test Lokkit.lns get conf =
{ "#comment" = "Configuration file for system-config-firewall" }
{ }
{ "enabled" }
{ "port"
{ "start" = "111" }
{ "protocol" = "tcp" } }
{ "port"
{ "start" = "111" }
{ "protocol" = "udp" } }
{ "port"
{ "start" = "2020" }
{ "end" = "2049" }
{ "protocol" = "tcp" } }
{ "port"
{ "start" = "5900" }
{ "end" = "5910" }
{ "protocol" = "tcp" } }
{ "custom-rules" = "/var/lib/misc/iptables-forward-bridged"
{ "type" = "ipv4" }
{ "table" = "filter" } }
{ "service" = "dns" }
{ "service" = "ssh" }
{ "trust" = "trust1" }
{ "masq" = "eth42" }
{ "block-icmp" = "5" }
{ "trust" = "trust0" }
{ "addmodule" = "fancy" }
{ "removemodule" = "broken" }
{ "forward-port"
{ "if" = "forw0" }
{ "port" = "42" }
{ "proto" = "tcp" }
{ "toport" = "42" }
{ "toaddr" = "192.168.0.42" } }
{ "selinux" = "permissive" }
test Lokkit.custom_rules get
"--custom-rules=ipv4:filter:/some/file\n" =
{ "custom-rules" = "/some/file"
{ "type" = "ipv4" }
{ "table" = "filter" } }
test Lokkit.custom_rules get
"--custom-rules=filter:/some/file\n" =
{ "custom-rules" = "/some/file"
{ "table" = "filter" } }
test Lokkit.custom_rules get
"--custom-rules=ipv4:/some/file\n" =
{ "custom-rules" = "/some/file"
{ "type" = "ipv4" } }
test Lokkit.custom_rules get
"--custom-rules=/some/file\n" =
{ "custom-rules" = "/some/file" }
test Lokkit.lns get
"--trust=tun+\n--trust=eth0.42\n--trust=eth0:1\n" =
{ "trust" = "tun+" }
{ "trust" = "eth0.42" }
{ "trust" = "eth0:1" }
(* We didn't allow '-' in the service name *)
test Lokkit.lns get "--service=samba-client\n" =
{ "service" = "samba-client" }