~ntt-pf-lab/nova/monkey_patch_notification

« back to all changes in this revision

Viewing changes to vendor/Twisted-10.0.0/doc/names/howto/listings/names/example-domain.com

  • Committer: Jesse Andrews
  • Date: 2010-05-28 06:05:26 UTC
  • Revision ID: git-v1:bf6e6e718cdc7488e2da87b21e258ccc065fe499
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
zone = [
 
3
    SOA(
 
4
        # For whom we are the authority
 
5
        'example-domain.com',
 
6
 
 
7
        # This nameserver's name
 
8
        mname = "ns1.example-domain.com",
 
9
        
 
10
        # Mailbox of individual who handles this
 
11
        rname = "root.example-domain.com",
 
12
 
 
13
        # Unique serial identifying this SOA data
 
14
        serial = 2003010601,        
 
15
 
 
16
        # Time interval before zone should be refreshed
 
17
        refresh = "1H",             
 
18
 
 
19
        # Interval before failed refresh should be retried
 
20
        retry = "1H",               
 
21
 
 
22
        # Upper limit on time interval before expiry
 
23
        expire = "1H",              
 
24
 
 
25
        # Minimum TTL
 
26
        minimum = "1H"              
 
27
    ),
 
28
 
 
29
    A('example-domain.com', '127.0.0.1'),
 
30
    NS('example-domain.com', 'ns1.example-domain.com'),
 
31
 
 
32
    CNAME('www.example-domain.com', 'example-domain.com'),
 
33
    CNAME('ftp.example-domain.com', 'example-domain.com'),
 
34
 
 
35
    MX('example-domain.com', 0, 'mail.example-domain.com'),
 
36
    A('mail.example-domain.com', '123.0.16.43')
 
37
]