Skip to content

Instantly share code, notes, and snippets.

@juliandunn
Created September 13, 2012 19:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juliandunn/3716996 to your computer and use it in GitHub Desktop.
Save juliandunn/3716996 to your computer and use it in GitHub Desktop.
Example named.conf for use with AWS
include "/etc/named/named.rfc1912.zones";
include "/etc/named/named.options";
zone "." IN {
type hint;
file "named.ca";
};
zone "amazonaws.com" {
type forward;
forwarders { 172.16.0.23; };
forward only;
};
zone "ec2.internal" {
type forward;
forwarders { 172.16.0.23; };
forward only;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment