Difference between pages "Package:Macchanger" and "Package:Bind"

From Funtoo
(Difference between pages)
Jump to navigation Jump to search
(initial commit before i wreck it)
 
m
 
Line 1: Line 1:
{{Ebuild
{{Ebuild
|Summary=Utility for viewing/manipulating the MAC address of network interfaces
|Summary=BIND - Berkeley Internet Name Domain - Name Server
|CatPkg=net-analyzer/macchanger
|CatPkg=net-dns/bind
|Homepage=https://github.com/alobbs/macchanger
|Homepage=http://www.isc.org/software/bind
}}
}}
{{console|body=###i## emerge net-analyzer/macchanger}}


=== Usage ===
BIND is a DNS server.
==== Blah ====
{{console|body=###i## blah blah blah blah blah}}


==== Blah ====
=== Installation ===
{{console|body=###i## blah blah blah blah blah}}
{{console|body=###i## emerge net-dns/bind}}


==== Blah ====
=== Local Caching Only Server ===
{{console|body=###i## blah blah blah blah blah}}
{{console|body=###i## echo "dns_servers="127.0.0.1" >> /etc/conf.d/net}}


==== Blah ====
{{file|name=/etc/bind/named.conf|lang=|desc=ensure local listening|body=
{{console|body=###i## blah blah blah blah blah}}
listen-on-v6 { ::1; };
listen-on { 127.0.0.1; };
}}
 
{{file|name=/etc/bind/named.conf|lang=|desc=remove /* comments */ disabling this block, optionally add your upstream DNS servers|body=
forward first;
forwarders {
// 123.123.123.123; // Your ISP NS
// 124.124.124.124; // Your ISP NS
// 4.2.2.1; // Level3 Public DNS
// 4.2.2.2; // Level3 Public DNS
8.8.8.8; // Google Open DNS
8.8.4.4; // Google Open DNS
};
}}
 
{{file|name=/etc/resolv.conf|lang=|desc=set the local system to listen to BIND|body=
nameserver 127.0.0.1
}}


==== Blah ====
{{console|body=###i## rc-update add named default
{{console|body=###i## blah blah blah blah blah}}
###i## rc
}}


==== Revert All Changes ====
{{PageNeedsUpdates}}
{{console|body=###i## blah blah blah blah blah}}
{{EbuildFooter}}
{{EbuildFooter}}

Revision as of 13:42, February 5, 2015

Bind

   Tip

We welcome improvements to this page. To edit this page, Create a Funtoo account. Then log in and then click here to edit this page. See our editing guidelines to becoming a wiki-editing pro.


BIND is a DNS server.

Installation

root # emerge net-dns/bind

Local Caching Only Server

root # echo "dns_servers="127.0.0.1" >> /etc/conf.d/net
   /etc/bind/named.conf - ensure local listening
listen-on-v6 { ::1; };
	listen-on { 127.0.0.1; };
   /etc/bind/named.conf - remove /* comments */ disabling this block, optionally add your upstream DNS servers
forward first;
	forwarders {
	//	123.123.123.123;	// Your ISP NS
	//	124.124.124.124;	// Your ISP NS
	//	4.2.2.1;		// Level3 Public DNS
	//	4.2.2.2;		// Level3 Public DNS
		8.8.8.8;		// Google Open DNS
		8.8.4.4;		// Google Open DNS
	};
   /etc/resolv.conf - set the local system to listen to BIND
nameserver 127.0.0.1
root # rc-update add named default
root # rc