Changed ::1 to 2001:db8:1234::42. RFC 3849 reserves 2001:db8/32 for use in documentation and something that looks like a "real" global IPv6 address is much better in an example than using ::1 (localhost). Using a private IPv4 address and IPv6 localhost in an example make no sense to me.
display_name = "host1"
address = "192.168.0.1"
- address6 = "::1"
+ address6 = "2001:db8:1234::42"
}
In general you need to write each statement on a new line. Expressions started
object Host "host1.example.org" {
display_name = "host1"
- address = "192.168.0.1"; address6 = "::1"
+ address = "192.168.0.1"; address6 = "2001:db8:1234::42"
}
Each object is uniquely identified by its type (`Host`) and name