Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
020-wireless
020_dns
Commits
e6f8c948
Commit
e6f8c948
authored
Nov 07, 2015
by
hark
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix copy script + forwardzones
parent
4ef2d604
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
144 additions
and
4 deletions
+144
-4
dns/copy.sh
dns/copy.sh
+12
-0
dns/hostfiles/adm.conf
dns/hostfiles/adm.conf
+109
-0
dns/hostfiles/forwardzones.conf
dns/hostfiles/forwardzones.conf
+19
-0
dns/hostfiles/hostfile.nwlan_mng
dns/hostfiles/hostfile.nwlan_mng
+4
-1
dns/hostfiles/management.irl
dns/hostfiles/management.irl
+0
-3
No files found.
dns/copy.sh
View file @
e6f8c948
...
...
@@ -17,6 +17,18 @@ scp $HFD/gitzones.conf root@trashbat:/etc/bind/zones/
scp
$HFD
/gitzones.conf root@stanleyH:/etc/bind/zones/
scp
$HFD
/gitzones.conf root@atc:/etc/bind/zones/
#forward
scp
$HFD
/forwardzones.conf root@trashbat:/etc/bind/zones/
scp
$HFD
/forwardzones.conf root@stanleyH:/etc/bind/zones/
scp
$HFD
/forwardzones.conf root@atc:/etc/bind/zones/
#adm
scp
$HFD
/adm.conf root@trashbat:/etc/bind/zones/
scp
$HFD
/adm.conf root@stanleyH:/etc/bind/zones/
scp
$HFD
/adm.conf root@atc:/etc/bind/zones/
#tinc tunnel
cd
$OUT
/amsw.020
scp db.10.205.252 db.amsw root@atc:/etc/bind/zones/
...
...
dns/hostfiles/adm.conf
0 → 100644
View file @
e6f8c948
zone
"adm"
{
type
forward
;
forward
only
;
forwarders
{
10
.
205
.
25
.
10
;
10
.
205
.
25
.
25
;
};
};
#
#adm reverse dns
#
zone
"16.205.10.IN-ADDR.ARPA"
in
{
type
forward
;
forward
only
;
forwarders
{
10
.
205
.
25
.
25
; };
};
zone
"17.205.10.IN-ADDR.ARPA"
in
{
type
forward
;
forward
only
;
forwarders
{
10
.
205
.
25
.
25
; };
};
zone
"18.205.10.IN-ADDR.ARPA"
in
{
type
forward
;
forward
only
;
forwarders
{
10
.
205
.
25
.
25
; };
};
zone
"19.205.10.IN-ADDR.ARPA"
in
{
type
forward
;
forward
only
;
forwarders
{
10
.
205
.
25
.
25
; };
};
zone
"20.205.10.IN-ADDR.ARPA"
in
{
type
forward
;
forward
only
;
forwarders
{
10
.
205
.
25
.
25
; };
};
zone
"21.205.10.IN-ADDR.ARPA"
in
{
type
forward
;
forward
only
;
forwarders
{
10
.
205
.
25
.
25
; };
};
zone
"22.205.10.IN-ADDR.ARPA"
in
{
type
forward
;
forward
only
;
forwarders
{
10
.
205
.
25
.
25
; };
};
zone
"23.205.10.IN-ADDR.ARPA"
in
{
type
forward
;
forward
only
;
forwarders
{
10
.
205
.
25
.
25
; };
};
zone
"24.205.10.IN-ADDR.ARPA"
in
{
type
forward
;
forward
only
;
forwarders
{
10
.
205
.
25
.
25
; };
};
zone
"25.205.10.IN-ADDR.ARPA"
in
{
type
forward
;
forward
only
;
forwarders
{
10
.
205
.
25
.
25
; };
};
zone
"26.205.10.IN-ADDR.ARPA"
in
{
type
forward
;
forward
only
;
forwarders
{
10
.
205
.
25
.
25
; };
};
zone
"27.205.10.IN-ADDR.ARPA"
in
{
type
forward
;
forward
only
;
forwarders
{
10
.
205
.
25
.
25
; };
};
zone
"28.205.10.IN-ADDR.ARPA"
in
{
type
forward
;
forward
only
;
forwarders
{
10
.
205
.
25
.
25
; };
};
zone
"29.205.10.IN-ADDR.ARPA"
in
{
type
forward
;
forward
only
;
forwarders
{
10
.
205
.
25
.
25
; };
};
zone
"30.205.10.IN-ADDR.ARPA"
in
{
type
forward
;
forward
only
;
forwarders
{
10
.
205
.
25
.
25
; };
};
zone
"31.205.10.IN-ADDR.ARPA"
in
{
type
forward
;
forward
only
;
forwarders
{
10
.
205
.
25
.
25
; };
};
dns/hostfiles/forwardzones.conf
0 → 100644
View file @
e6f8c948
#
# forwarders
#
zone
"wg"
{
type
forward
;
forward
only
;
forwarders
{
10
.
205
.
253
.
2
; };
};
#zone "020" {
# type forward;
# forward only;
# forwarders { 10.205.253.1; };
#};
include
"/etc/bind/zones/adm.conf"
;
dns/hostfiles/hostfile.nwlan_mng
View file @
e6f8c948
...
...
@@ -3,5 +3,8 @@
192.168.12.1 atc #not configured atm.
192.168.12.2 interference-main-switch
192.168.12.3 isoup
192.168.12.4 mrv
192.168.12.5 isoup_ipmi
192.168.12.6 pxe_boot_server #doesnt exist yet
192.168.12.12 mrv_optiswitch
dns/hostfiles/management.irl
deleted
100644 → 0
View file @
4ef2d604
192.168.12.1
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment