HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: //snap/certbot/current/usr/share/augeas/lenses/dist/tests/test_netmasks.aug
(* Test for netmasks lens *)
module Test_netmasks =

  let conf = "# The netmasks file associates Internet Protocol (IP) address
# masks with IP network numbers.
#

192.168.1.0	255.255.255.0
10.0.0.0 255.0.0.0
"

  test Netmasks.lns get conf =
    { "#comment" = "The netmasks file associates Internet Protocol (IP) address" }
    { "#comment" = "masks with IP network numbers." }
    { }
    { }
    { "1"
        { "network" = "192.168.1.0" }
        { "netmask" = "255.255.255.0" } }
    { "2"
        { "network" = "10.0.0.0" }
        { "netmask" = "255.0.0.0" } }

(* Local Variables: *)
(* mode: caml       *)
(* End:             *)