From bb4f2b8bb043507bd334ef24c8c7bccd8d1823cc Mon Sep 17 00:00:00 2001 From: Murray Stokely Date: Wed, 17 Oct 2001 04:34:04 +0000 Subject: [PATCH] Use 'example.com' or 'example.org' for example domain names. Submitted by: nik as per RFC 2606 --- .../handbook/advanced-networking/chapter.sgml | 88 +++++++++---------- .../books/handbook/security/chapter.sgml | 10 +-- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/en_US.ISO8859-1/books/handbook/advanced-networking/chapter.sgml b/en_US.ISO8859-1/books/handbook/advanced-networking/chapter.sgml index 5676b60a46..3dcc928038 100644 --- a/en_US.ISO8859-1/books/handbook/advanced-networking/chapter.sgml +++ b/en_US.ISO8859-1/books/handbook/advanced-networking/chapter.sgml @@ -120,10 +120,10 @@ default outside-gw UGSc 37 418 ppp0 localhost localhost UH 0 181 lo0 test0 0:e0:b5:36:cf:4f UHLW 5 63288 ed0 77 10.20.30.255 link#1 UHLW 1 2421 -foobar.com link#1 UC 0 0 +example.com link#1 UC 0 0 host1 0:e0:a8:37:8:1e UHLW 3 4601 lo0 host2 0:e0:a8:37:8:1e UHLW 0 5 lo0 => -host2.foobar.com link#1 UC 0 0 +host2.example.com link#1 UC 0 0 224 link#1 UC 0 0 default route @@ -161,7 +161,7 @@ host2.foobar.com link#1 UC 0 0 FreeBSD will also add subnet routes for the local subnet (10.20.30.255 is the broadcast address for the subnet 10.20.30, and foobar.com is the domain name associated + role="domainname">example.com is the domain name associated with that subnet). The designation link#1 refers to the first Ethernet card in the machine. You will notice no additional interface is specified for those. @@ -3564,11 +3564,11 @@ dhcp_flags="" org. is a zone under the root zone - foobar.org is a zone under the org. zone + example.org is a zone under the org. zone - foo.foobar.org. is a subdomain, a zone under the - foobar.org. zone + foo.example.org. is a subdomain, a zone under the + example.org. zone @@ -3580,7 +3580,7 @@ dhcp_flags="" As one can see, the more specific part of a hostname appears to - its left. For example, foobar.org. is more + its left. For example, example.org. is more specific than org., as org. is more specific than the root zone. The layout of each part of a hostname is much like a filesystem: the /dev @@ -3603,7 +3603,7 @@ dhcp_flags="" world, replying authoritatively to queries. - a domain, such as foobar.org, is + a domain, such as example.org, is registered and IP addresses need to be assigned to hostnames under it. @@ -3869,22 +3869,22 @@ zone "0.168.192.in-addr.arpa" { For each new zone served, a new zone entry must be added to named.conf - For example, the simplest zone entry for foobar.org can + For example, the simplest zone entry for example.org can look like: - zone "foobar.org" { + zone "example.org" { type master; - file "foobar.org"; + file "example.org"; }; The zone is a master, as indicated by the statement, holding its zone information in - /etc/namedb/foobar.org indicated by + /etc/namedb/example.org indicated by the statement. - zone "foobar.org" { + zone "example.org" { type slave; - file "foobar.org"; + file "example.org"; }; In the slave case, the zone information is transferred from @@ -3897,14 +3897,14 @@ zone "0.168.192.in-addr.arpa" { Zone Files - An example master zone file for foobar.org - (existing within /etc/namedb/foobar.org) + An example master zone file for example.org + (existing within /etc/namedb/example.org) is as follows: $TTL 3600 -foobar.org. IN SOA ns1.foobar.org. admin.foobar.org. ( +example.org. IN SOA ns1.example.org. admin.example.org. ( 5 ; Serial 10800 ; Refresh 3600 ; Retry @@ -3912,8 +3912,8 @@ foobar.org. IN SOA ns1.foobar.org. admin.foobar.org. ( 86400 ) ; Minimum TTL ; DNS Servers -@ IN NS ns1.foobar.org. -@ IN NS ns2.foobar.org. +@ IN NS ns1.example.org. +@ IN NS ns2.example.org. ; Machine Names localhost IN A 127.0.0.1 @@ -3926,7 +3926,7 @@ mail IN A 3.2.1.10 www IN CNAME @ ; MX Record -@ IN MX 10 mail.foobar.org. +@ IN MX 10 mail.example.org. Note that every hostname ending in a . is an @@ -3934,9 +3934,9 @@ www IN CNAME @ . is referenced to the origin. For example, www is translated into www + origin. In our fictitious zone file, our origin - is foobar.org., so + is example.org., so www would translate to - www.foobar.org. + www.example.org. @@ -3992,7 +3992,7 @@ www IN CNAME @ -foobar.org. IN SOA ns1.foobar.org. admin.foobar.org. ( +example.org. IN SOA ns1.example.org. admin.example.org. ( 5 ; Serial 10800 ; Refresh after 3 hours 3600 ; Retry after 1 hour @@ -4003,26 +4003,26 @@ foobar.org. IN SOA ns1.foobar.org. admin.foobar.org. ( - foobar.org. + example.org. the domain name, also the origin for this zone file. - ns1.foobar.org. + ns1.example.org. the primary/authoritative name server for this zone - admin.foobar.org. + admin.example.org. the responsible person for this zone, email address with @ - replaced. (admin@foobar.org becomes - admin.foobar.org) + replaced. (admin@example.org becomes + admin.example.org) @@ -4043,13 +4043,13 @@ foobar.org. IN SOA ns1.foobar.org. admin.foobar.org. ( -@ IN NS ns1.foobar.org. +@ IN NS ns1.example.org. This is an NS entry. Every name server that is going to reply authoritatively for the zone must have one of these entries. The @ as seen here could have been - foobar.org. + example.org. The @ translates to the origin. @@ -4062,9 +4062,9 @@ mail IN A 3.2.1.10 The A record indicates machine names. As seen above, - ns1.foobar.org would resolve to + ns1.example.org would resolve to 3.2.1.2. Again, the origin symbol, @, is - used here, thus meaning foobar.org + used here, thus meaning example.org would resolve to 3.2.1.30. @@ -4075,25 +4075,25 @@ www IN CNAME @ The canonical name record is usually used for giving aliases to a machine. In the example, www is aliased to the machine addressed to the origin, or - foobar.org (3.2.1.30). + example.org (3.2.1.30). CNAMEs can be used to provide alias hostnames, or round robin one hostname among multiple machines. -@ IN MX 10 mail.foobar.org. +@ IN MX 10 mail.example.org. The MX record indicates which mail servers are responsible for handling incoming mail for the zone. - mail.foobar.org is the hostname of the mail server, + mail.example.org is the hostname of the mail server, and 10 being the priority of that mail server. One can have several mail servers, with priorities of 3, 2, - 1. A mail server attempting to deliver to foobar.org + 1. A mail server attempting to deliver to example.org would first try the highest priority MX, then the second highest, etc, until the mail can be properly delivered. @@ -4106,20 +4106,20 @@ www IN CNAME @ $TTL 3600 -1.2.3.in-addr.arpa. IN SOA ns1.foobar.org. admin.foobar.org. ( +1.2.3.in-addr.arpa. IN SOA ns1.example.org. admin.example.org. ( 5 ; Serial 10800 ; Refresh 3600 ; Retry 604800 ; Expire 3600 ) ; Minimum -@ IN NS ns1.foobar.org. -@ IN NS ns2.foobar.org. +@ IN NS ns1.example.org. +@ IN NS ns2.example.org. -2 IN PTR ns1.foobar.org. -3 IN PTR ns2.foobar.org. -10 IN PTR mail.foobar.org. -30 IN PTR foobar.org. +2 IN PTR ns1.example.org. +3 IN PTR ns2.example.org. +10 IN PTR mail.example.org. +30 IN PTR example.org. This file gives the proper IP address to hostname mappings of our above fictitious domain. @@ -4431,7 +4431,7 @@ www IN CNAME @ example: server ntplocal.example.com prefer -server timeserver.foobar.org +server timeserver.example.org server ntp2a.example.net driftfile /var/db/ntp.drift diff --git a/en_US.ISO8859-1/books/handbook/security/chapter.sgml b/en_US.ISO8859-1/books/handbook/security/chapter.sgml index e27875a012..f014f38d48 100644 --- a/en_US.ISO8859-1/books/handbook/security/chapter.sgml +++ b/en_US.ISO8859-1/books/handbook/security/chapter.sgml @@ -3093,11 +3093,11 @@ spdadd 10.6.7.8 10.2.3.4 any -P out ipsec &man.rlogin.1;. - &prompt.root ssh user@foobardomain.com + &prompt.root ssh user@example.com Host key not found from the list of known hosts. Are you sure you want to continue connecting (yes/no)? yes -Host 'foobardomain.com' added to the list of known hosts. -user@foobardomain.com's password: ******* +Host 'example.com' added to the list of known hosts. +user@example.com's password: ******* The login will continue just as it would have if a session was created using rlogin or telnet. SSH utilizes a @@ -3134,8 +3134,8 @@ user@foobardomain.com's password: ******* it copies a file to or from a remote machine, except in a secure fashion. - &prompt.root scp user@foobardomain.com:/COPYRIGHT COPYRIGHT -user@foobardomain.com's password: + &prompt.root scp user@example.com:/COPYRIGHT COPYRIGHT +user@example.com's password: COPYRIGHT 100% |*****************************| 4735 00:00 &prompt.root