The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

WWW::eNom::PrivateNameServer - Representation of Private Nameserver

SYNOPSIS

    my $domain = WWW::eNom::Domain->new( ... );

    my $private_name_server = WWW::eNom::PrivateNameServer->new(
        name => 'ns1.' . $domain->name,
        ip   => '4.2.2.1',
    );

DESCRIPTION

Represents eNom private nameservers, containing the name and ip address.

ATTRIBUTES

name

The FQDN of the nameserver (will be ns1.your-domain.com). Keep in mind the 'your-domain.com' part must match the registered domain this is going to be a private nameserver for.

ip

The IP address that the above name should resolve to.