PATH:
etc
options { /* make named use port 53 for the source of all queries, to allow * firewalls to block all ports except 53: */ // query-source port 53; recursion no; /* We no longer enable this by default as the dns posion exploit has forced many providers to open up their firewalls a bit */ // Put files that named is allowed to write in the data/ directory: directory "/var/named"; // the default pid-file "/var/run/named/named.pid"; dump-file "data/cache_dump.db"; statistics-file "data/named_stats.txt"; /* memstatistics-file "data/named_mem_stats.txt"; */ allow-transfer { "none"; }; }; logging { channel default_log { file "/var/log/named/named.log" versions 5 size 128M; print-time yes; print-severity yes; print-category yes; severity warning; }; category default { default_log; }; category general { default_log; }; }; // All BIND 9 zones are in a "view", which allow different zones to be served // to different types of client addresses, and for options to be set for groups // of zones. // // By default, if named.conf contains no "view" clauses, all zones are in the // "default" view, which matches all clients. // // If named.conf contains any "view" clause, then all zones MUST be in a view; // so it is recommended to start off using views to avoid having to restructure // your configuration files in the future. view "localhost_resolver" { /* This view sets up named to be a localhost resolver ( caching only nameserver ). * If all you want is a caching-only nameserver, then you need only define this view: */ match-clients { 127.0.0.0/24; }; match-destinations { localhost; }; recursion yes; zone "." IN { type hint; file "/var/named/named.ca"; }; /* these are zones that contain definitions for all the localhost * names and addresses, as recommended in RFC1912 - these names should * ONLY be served to localhost clients: */ include "/var/named/named.rfc1912.zones"; }; view "internal" { /* This view will contain zones you want to serve only to "internal" clients that connect via your directly attached LAN interfaces - "localnets" . */ match-clients { localnets; }; match-destinations { localnets; }; recursion yes; zone "." IN { type hint; file "/var/named/named.ca"; }; // include "/var/named/named.rfc1912.zones"; // you should not serve your rfc1912 names to non-localhost clients. // These are your "authoritative" internal zones, and would probably // also be included in the "localhost_resolver" view above : zone "20-123-172-228.cprapid.com" { type master; file "/var/named/20-123-172-228.cprapid.com.db"; }; zone "centos.nipponia.eu" { type master; file "/var/named/centos.nipponia.eu.db"; }; zone "server.nipponia.eu" { type master; file "/var/named/server.nipponia.eu.db"; }; zone "ns1.nipponia.eu" { type master; file "/var/named/ns1.nipponia.eu.db"; }; zone "ns2.nipponia.eu" { type master; file "/var/named/ns2.nipponia.eu.db"; }; zone "voltyscooters.com" { type master; file "/var/named/voltyscooters.com.db"; }; zone "lifan.nl" { type master; file "/var/named/lifan.nl.db"; }; zone "voltymotorcycles.com" { type master; file "/var/named/voltymotorcycles.com.db"; }; zone "bi.nipponia.com" { type master; file "/var/named/bi.nipponia.com.db"; }; zone "doohan-ev.nl" { type master; file "/var/named/doohan-ev.nl.db"; }; zone "nipponia.nl" { type master; file "/var/named/nipponia.nl.db"; }; zone "volty.eu" { type master; file "/var/named/volty.eu.db"; }; zone "trade-traffic.com" { type master; file "/var/named/trade-traffic.com.db"; }; zone "driewielscooter.com" { type master; file "/var/named/driewielscooter.com.db"; }; zone "nipponiacaribe.com" { type master; file "/var/named/nipponiacaribe.com.db"; }; zone "nipponia.gt" { type master; file "/var/named/nipponia.gt.db"; }; zone "nipponia.com" { type master; file "/var/named/nipponia.com.db"; }; zone "nipponia.fr" { type master; file "/var/named/nipponia.fr.db"; }; zone "nipponia.cy" { type master; file "/var/named/nipponia.cy.db"; }; }; view "external" { /* This view will contain zones you want to serve only to "external" clients * that have addresses that are not on your directly attached LAN interface subnets: */ recursion no; additional-from-cache no; // you'd probably want to deny recursion to external clients, so you don't // end up providing free DNS service to all takers // all views must contain the root hints zone: zone "." IN { type hint; file "/var/named/named.ca"; }; // These are your "authoritative" external zones, and would probably // contain entries for just your web and mail servers: // BEGIN external zone entries zone "20-123-172-228.cprapid.com" { type master; file "/var/named/20-123-172-228.cprapid.com.db"; }; zone "centos.nipponia.eu" { type master; file "/var/named/centos.nipponia.eu.db"; }; zone "server.nipponia.eu" { type master; file "/var/named/server.nipponia.eu.db"; }; zone "ns1.nipponia.eu" { type master; file "/var/named/ns1.nipponia.eu.db"; }; zone "ns2.nipponia.eu" { type master; file "/var/named/ns2.nipponia.eu.db"; }; zone "voltyscooters.com" { type master; file "/var/named/voltyscooters.com.db"; }; zone "lifan.nl" { type master; file "/var/named/lifan.nl.db"; }; zone "voltymotorcycles.com" { type master; file "/var/named/voltymotorcycles.com.db"; }; zone "bi.nipponia.com" { type master; file "/var/named/bi.nipponia.com.db"; }; zone "doohan-ev.nl" { type master; file "/var/named/doohan-ev.nl.db"; }; zone "nipponia.nl" { type master; file "/var/named/nipponia.nl.db"; }; zone "volty.eu" { type master; file "/var/named/volty.eu.db"; }; zone "trade-traffic.com" { type master; file "/var/named/trade-traffic.com.db"; }; zone "driewielscooter.com" { type master; file "/var/named/driewielscooter.com.db"; }; zone "nipponiacaribe.com" { type master; file "/var/named/nipponiacaribe.com.db"; }; zone "nipponia.gt" { type master; file "/var/named/nipponia.gt.db"; }; zone "nipponia.com" { type master; file "/var/named/nipponia.com.db"; }; zone "nipponia.fr" { type master; file "/var/named/nipponia.fr.db"; }; zone "nipponia.cy" { type master; file "/var/named/nipponia.cy.db"; }; };
[+]
..
[-] fstab
[edit]
[-] crypttab
[edit]
[-] mtab
[edit]
[-] .updated
[edit]
[+]
grub.d
[+]
libreport
[+]
terminfo
[+]
prelink.conf.d
[+]
skel
[-] shells
[edit]
[+]
alternatives
[+]
chkconfig.d
[-] libaudit.conf
[edit]
[+]
init.d
[+]
rc.d
[+]
sasl2
[+]
rc0.d
[+]
libnl
[+]
rc1.d
[-] logrotate.conf
[edit]
[+]
rc2.d
[+]
groff
[+]
rc3.d
[+]
openldap
[+]
rc4.d
[+]
cpanel
[+]
rc5.d
[-] libuser.conf
[edit]
[+]
rc6.d
[+]
default
[+]
request-key.d
[-] aliases
[edit]
[+]
fonts
[-] bashrc
[edit]
[-] request-key.conf
[edit]
[-] csh.cshrc
[edit]
[+]
selinux
[-] csh.login
[edit]
[-] virc
[edit]
[+]
ssh
[-] environment
[edit]
[+]
gnupg
[-] exports
[edit]
[-] yum.conf
[edit]
[-] filesystems
[edit]
[-] login.defs
[edit]
[-] group
[edit]
[+]
depmod.d
[-] gshadow
[edit]
[-] .pwd.lock
[edit]
[-] host.conf
[edit]
[-] dracut.conf
[edit]
[-] hosts
[edit]
[+]
dracut.conf.d
[-] hosts.allow
[edit]
[-] group-
[edit]
[-] hosts.deny
[edit]
[-] gshadow-
[edit]
[-] inputrc
[edit]
[+]
modprobe.d
[-] motd
[edit]
[+]
rsyslog.d
[-] passwd
[edit]
[+]
binfmt.d
[-] printcap
[edit]
[+]
modules-load.d
[-] profile
[edit]
[+]
profile.d
[+]
systemd
[-] protocols
[edit]
[-] rc.local
[edit]
[-] securetty
[edit]
[-] passwd-
[edit]
[-] services
[edit]
[-] shadow-
[edit]
[-] shadow
[edit]
[+]
dbus-1
[-] subgid
[edit]
[+]
sysctl.d
[-] subuid
[edit]
[+]
X11
[+]
bash_completion.d
[+]
opt
[+]
pki
[+]
pm
[+]
sysconfig
[+]
xdg
[+]
xinetd.d
[+]
tmpfiles.d
[-] ld.so.conf
[edit]
[+]
ld.so.conf.d
[-] system-release
[edit]
[-] nsswitch.conf
[edit]
[-] inittab
[edit]
[-] rpc
[edit]
[-] sysctl.conf
[edit]
[-] ld.so.cache
[edit]
[+]
popt.d
[+]
udev
[+]
lsm
[-] GREP_COLORS
[edit]
[+]
pkcs11
[+]
ssl
[-] machine-id
[edit]
[-] DIR_COLORS
[edit]
[+]
gcrypt
[+]
dhcp
[-] DIR_COLORS.256color
[edit]
[-] os-release
[edit]
[+]
cron.monthly
[-] DIR_COLORS.lightbgcolor
[edit]
[+]
gss
[-] localtime
[edit]
[-] krb5.conf
[edit]
[+]
krb5.conf.d
[+]
rpm
[+]
yum.repos.d
[+]
yum
[-] system-release-cpe
[edit]
[-] centos-release
[edit]
[-] redhat-release
[edit]
[+]
lvm
[-] centos-release-upstream
[edit]
[+]
NetworkManager
[-] issue
[edit]
[-] nsswitch.conf.bak
[edit]
[-] issue.net
[edit]
[-] adjtime
[edit]
[-] magic
[edit]
[-] networks
[edit]
[-] GeoIP.conf
[edit]
[+]
logrotate.d
[+]
abrt
[-] resolv.conf
[edit]
[+]
python
[+]
security
[+]
pam.d
[-] statetab
[edit]
[-] mail.rc
[edit]
[+]
iproute2
[+]
polkit-1
[-] gdbinit
[edit]
[+]
gdbinit.d
[+]
ppp
[+]
ntp
[-] sos.conf
[edit]
[-] rwtab
[edit]
[-] netconfig
[edit]
[+]
cron.hourly
[-] asound.conf
[edit]
[+]
statetab.d
[-] favicon.png
[edit]
[+]
cron.daily
[+]
rwtab.d
[+]
cron.weekly
[-] remotedomains
[edit]
[-] crontab
[edit]
[-] secondarymx
[edit]
[-] anacrontab
[edit]
[+]
cron.d
[-] skipsmtpcheckhosts
[edit]
[-] cron.deny
[edit]
[-] my.cnf
[edit]
[-] ips
[edit]
[-] sestatus.conf
[edit]
[+]
samba
[-] spammeripblocks
[edit]
[-] kdump.conf
[edit]
[-] digestshadow
[edit]
[-] ssldomains
[edit]
[-] makedumpfile.conf.sample
[edit]
[-] named.conf
[edit]
[-] grub2.cfg
[edit]
[-] email_send_limits
[edit]
[-] usb_modeswitch.conf
[edit]
[+]
wpa_supplicant
[-] trueuserdomains
[edit]
[-] ethertypes
[edit]
[+]
plymouth
[-] greylist_trusted_netblocks
[edit]
[-] waagent.conf
[edit]
[-] cpspamd.conf
[edit]
[+]
egl
[-] fprintd.conf
[edit]
[-] antivirus.exim
[edit]
[-] vimrc
[edit]
[-] trueuserowners
[edit]
[-] pinforc
[edit]
[+]
cifs-utils
[-] mailbox_formats
[edit]
[-] rsyslog.conf
[edit]
[+]
tuned
[+]
setuptool.d
[+]
firewalld
[+]
my.cnf.d
[+]
dpkg
[-] updatedb.conf
[edit]
[+]
audisp
[+]
audit
[+]
apache2
[-] exim.conf.dist
[edit]
[-] rsyncd.conf
[edit]
[+]
smartmontools
[-] trusted_mail_users
[edit]
[-] at.deny
[edit]
[-] trustedmailhosts
[edit]
[-] chrony.conf
[edit]
[-] eximrejects.rpmorig
[edit]
[-] chrony.keys
[edit]
[-] userbwlimits
[edit]
[-] man_db.conf
[edit]
[-] exim.pl
[edit]
[-] e2fsck.conf
[edit]
[-] userdomains
[edit]
[-] mke2fs.conf
[edit]
[-] mailhelo
[edit]
[-] sudo-ldap.conf
[edit]
[-] localdomains.rpmnew
[edit]
[-] sudo.conf
[edit]
[-] userips
[edit]
[-] sudoers
[edit]
[+]
sudoers.d
[+]
mail
[-] relayhosts
[edit]
[-] trusted-key.key
[edit]
[-] eximrejects
[edit]
[-] wgetrc
[edit]
[-] userplans
[edit]
[-] nanorc
[edit]
[+]
scl
[-] vconsole.conf
[edit]
[-] locale.conf
[edit]
[-] hostname
[edit]
[+]
chkserv.d
[-] localaliases
[edit]
[-] aliases.db
[edit]
[-] named.conf.rebuilddnsconfig
[edit]
[-] mailips
[edit]
[-] shells.rpmnew
[edit]
[-] neighbor_netblocks
[edit]
[-] nsswitch.conf.rpmnew
[edit]
[-] spammers
[edit]
[-] tcsd.conf
[edit]
[+]
vdomainaliases
[-] userdatadomains.json
[edit]
[-] ipaddrpool
[edit]
[-] backupmxhosts
[edit]
[-] blocked_incoming_email_domains
[edit]
[-] exim.conf.localopts
[edit]
[+]
valiases
[-] demousers
[edit]
[+]
vfilters
[-] subuid-
[edit]
[-] subgid-
[edit]
[-] cpupdate.conf
[edit]
[-] exim_trusted_configs
[edit]
[-] nscd.conf
[edit]
[+]
named
[-] exim.conf
[edit]
[+]
proftpd
[+]
pdns
[-] stats.conf
[edit]
[-] named.iscdlv.key
[edit]
[-] nocgiusers
[edit]
[-] named.rfc1912.zones
[edit]
[-] outgoing_mail_hold_users
[edit]
[-] named.root.key
[edit]
[-] blocked_incoming_email_country_ips
[edit]
[-] ftpd-rsa.pem
[edit]
[-] exim.pl.local
[edit]
[-] elinks.conf
[edit]
[-] cpanel_php_fpmdisable
[edit]
[-] domainips
[edit]
[-] pure-ftpd.pem
[edit]
[-] ftpd-ca.pem
[edit]
[-] ftpd-rsa-key.pem
[edit]
[-] exim.crt
[edit]
[+]
dovecot
[-] recent_authed_mail_ips
[edit]
[-] manualmx
[edit]
[-] domainusers
[edit]
[-] p0fdisable
[edit]
[-] passwd.cache
[edit]
[-] eximmailtrap
[edit]
[-] idmapd.conf
[edit]
[-] exim_suspended_list
[edit]
[-] exim.key
[edit]
[-] userdatadomains
[edit]
[-] localdomains
[edit]
[-] blocked_incoming_email_countries
[edit]
[-] cpanel_mail_netblocks
[edit]
[-] dbowners
[edit]
[-] demodomains
[edit]
[-] demouids
[edit]
[-] recent_authed_mail_ips_users
[edit]
[-] named.conf.cache
[edit]
[+]
gssproxy
[-] aadpasswd
[edit]
[-] bash.bashrc
[edit]
[-] passwd.nouids.cache
[edit]
[-] cpsources.conf.plugins.example
[edit]
[-] outgoing_mail_suspended_users
[edit]
[-] recent_recipient_mail_server_ips
[edit]
[-] senderverifybypasshosts
[edit]
[-] exim.conf.mailman2.dist
[edit]
[-] exim.conf.mailman2.exiscan.dist
[edit]
[-] greylist_common_mail_providers
[edit]
[-] cpanel_exim_system_filter
[edit]
[-] named.conf.precpanelinstall
[edit]
[-] named.conf.prerebuilddnsconfig
[edit]
[-] named.conf.zonedir.cache
[edit]
[-] wwwacct.conf.shadow
[edit]
[-] wwwacct.conf
[edit]
[-] wwwacct.conf.cache
[edit]
[-] wwwacct.conf.shadow.cache
[edit]
[-] domain_remote_mx_ips.cdb
[edit]
[-] mailcap
[edit]
[-] mime.types
[edit]
[+]
glvnd
[+]
libpaper.d
[-] papersize
[edit]
[+]
ghostscript
[+]
ImageMagick-6
[-] .whostmgrft
[edit]
[-] ips.dnsmaster
[edit]
[-] named.conf.precleandns
[edit]
[+]
exports.d
[-] nfsmount.conf
[edit]
[-] shadow.nouids.cache
[edit]
[-] ips.remotedns
[edit]
[-] ips.remotemail
[edit]
[+]
pure-ftpd
[+]
azure
[-] pure-ftpd.conf
[edit]
[-] cpbackup-exclude.conf
[edit]
[-] my.cnf-cptech
[edit]
[-] pure-ftpd.conf.rpmnew
[edit]
[-] nfs.conf
[edit]
[-] cpupdate.conf.cp52965.bak
[edit]
[-] relayhostsusers
[edit]