This file is indexed.

/usr/share/augeas/lenses/dist/tests/test_networks.aug is in augeas-lenses 1.2.0-0ubuntu1.3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
module Test_Networks =

let conf = "# Sample networks
default         0.0.0.0         # default route    - mandatory
loopnet         127.0.0.0    loopnet_alias  loopnet_alias2   # loopback network - mandatory
mynet           128.253.154   # Modify for your own network address

loopback        127
arpanet         10      arpa    # Historical
localnet        192.168.25.192
"

test Networks.lns get conf =
  { "#comment" = "Sample networks" }
  { "1"
    { "name" = "default" }
    { "number" = "0.0.0.0" }
    { "#comment" = "default route    - mandatory" }
  }
  { "2"
    { "name" = "loopnet" }
    { "number" = "127.0.0.0" }
    { "aliases"
      { "1" = "loopnet_alias" }
      { "2" = "loopnet_alias2" }
    }
    { "#comment" = "loopback network - mandatory" }
  }
  { "3"
    { "name" = "mynet" }
    { "number" = "128.253.154" }
    { "#comment" = "Modify for your own network address" }
  }
  {}
  { "4"
    { "name" = "loopback" }
    { "number" = "127" }
  }
  { "5"
    { "name" = "arpanet" }
    { "number" = "10" }
    { "aliases"
      { "1" = "arpa" }
    }
    { "#comment" = "Historical" }
  }
  { "6"
    { "name" = "localnet" }
    { "number" = "192.168.25.192" }
  }