Bind Set Port for ForwardersRHEL BIND Server Intermittent errorRecursive forward a zone in BINDDNS Problems...

What to do when being responsible for data protection in your lab, yet advice is ignored?

Why did Jodrell Bank assist the Soviet Union to collect data from their spacecraft in the mid 1960's?

Overfitting and Underfitting

What's the rationale behind the objections to these measures against human trafficking?

Why is working on the same position for more than 15 years not a red flag?

Strange Sign on Lab Door

How do I add a variable to this curl command?

How to avoid being sexist when trying to employ someone to function in a very sexist environment?

Can we use the stored gravitational potential energy of a building to produce power?

Can pricing be copyrighted?

Integral inequality of length of curve

What does "keynote company" mean?

What is the purpose of easy combat scenarios that don't need resource expenditure?

Can a person refuse a presidential pardon?

math reviews in "Zentralblatt für Mathematik und ihre Grenzgebiete"

How to approximate rolls for potions of healing using only d6's?

Rear brake cable temporary fix possible?

Copy large no of files of specific date to another directory?

How to replace the content to multiple files?

How long would gestation period be for dwarfs?

Am I a Rude Number?

Superposition of light waves of different colors

Slow moving projectiles from a hand-held weapon - how do they reach the target?

Finding the number of integers that are a root and a cube at the same time



Bind Set Port for Forwarders


RHEL BIND Server Intermittent errorRecursive forward a zone in BINDDNS Problems (NIGHTMARES!) with BIND and VirtualminDNS BIND on CENTOS 6.3 and domain nameserversBind DNS server respond timeoutbind cache not used?DiG 9.9.5-3ubuntu0.5-Ubuntu status refusedDNS server forward all queries except the queries for reverse DNSubuntu 14.04 Bind DNS does not work from outside for some of my domainsForward a public zone inside a view from a private BIND













0















According to http://www.zytrax.com/books/dns/ch7/queries.html#forwarders the port can be specified after the address.



However when i try to set it to



forwarders {
127.0.0.1 2053;
}


named-checkconf returns



/etc/bind/named.conf.options:12: missing ';' before '2053'
/etc/bind/named.conf.options:12: expected IP address near '2053'


My Fulls named.conf.options file:



options {
directory "/var/cache/bind";
dnssec-validation no;
auth-nxdomain no;
recursion yes;
allow-recursion { any; };
allow-query { any; };
allow-query-cache { any; };
listen-on { any; };
listen-on-v6 { any; };
forwarders {
127.0.0.1 2053;
};
};









share|improve this question







New contributor




MagiiTech is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
















  • 1





    I think the correct syntax would be 127.0.0.1 port 2053;.

    – Thomas
    23 hours ago











  • That worked. Thanks

    – MagiiTech
    23 hours ago
















0















According to http://www.zytrax.com/books/dns/ch7/queries.html#forwarders the port can be specified after the address.



However when i try to set it to



forwarders {
127.0.0.1 2053;
}


named-checkconf returns



/etc/bind/named.conf.options:12: missing ';' before '2053'
/etc/bind/named.conf.options:12: expected IP address near '2053'


My Fulls named.conf.options file:



options {
directory "/var/cache/bind";
dnssec-validation no;
auth-nxdomain no;
recursion yes;
allow-recursion { any; };
allow-query { any; };
allow-query-cache { any; };
listen-on { any; };
listen-on-v6 { any; };
forwarders {
127.0.0.1 2053;
};
};









share|improve this question







New contributor




MagiiTech is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
















  • 1





    I think the correct syntax would be 127.0.0.1 port 2053;.

    – Thomas
    23 hours ago











  • That worked. Thanks

    – MagiiTech
    23 hours ago














0












0








0








According to http://www.zytrax.com/books/dns/ch7/queries.html#forwarders the port can be specified after the address.



However when i try to set it to



forwarders {
127.0.0.1 2053;
}


named-checkconf returns



/etc/bind/named.conf.options:12: missing ';' before '2053'
/etc/bind/named.conf.options:12: expected IP address near '2053'


My Fulls named.conf.options file:



options {
directory "/var/cache/bind";
dnssec-validation no;
auth-nxdomain no;
recursion yes;
allow-recursion { any; };
allow-query { any; };
allow-query-cache { any; };
listen-on { any; };
listen-on-v6 { any; };
forwarders {
127.0.0.1 2053;
};
};









share|improve this question







New contributor




MagiiTech is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












According to http://www.zytrax.com/books/dns/ch7/queries.html#forwarders the port can be specified after the address.



However when i try to set it to



forwarders {
127.0.0.1 2053;
}


named-checkconf returns



/etc/bind/named.conf.options:12: missing ';' before '2053'
/etc/bind/named.conf.options:12: expected IP address near '2053'


My Fulls named.conf.options file:



options {
directory "/var/cache/bind";
dnssec-validation no;
auth-nxdomain no;
recursion yes;
allow-recursion { any; };
allow-query { any; };
allow-query-cache { any; };
listen-on { any; };
listen-on-v6 { any; };
forwarders {
127.0.0.1 2053;
};
};






bind port named-conf






share|improve this question







New contributor




MagiiTech is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question







New contributor




MagiiTech is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question






New contributor




MagiiTech is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 23 hours ago









MagiiTechMagiiTech

1




1




New contributor




MagiiTech is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





MagiiTech is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






MagiiTech is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








  • 1





    I think the correct syntax would be 127.0.0.1 port 2053;.

    – Thomas
    23 hours ago











  • That worked. Thanks

    – MagiiTech
    23 hours ago














  • 1





    I think the correct syntax would be 127.0.0.1 port 2053;.

    – Thomas
    23 hours ago











  • That worked. Thanks

    – MagiiTech
    23 hours ago








1




1





I think the correct syntax would be 127.0.0.1 port 2053;.

– Thomas
23 hours ago





I think the correct syntax would be 127.0.0.1 port 2053;.

– Thomas
23 hours ago













That worked. Thanks

– MagiiTech
23 hours ago





That worked. Thanks

– MagiiTech
23 hours ago










0






active

oldest

votes











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "2"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});






MagiiTech is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f956447%2fbind-set-port-for-forwarders%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes








MagiiTech is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















MagiiTech is a new contributor. Be nice, and check out our Code of Conduct.













MagiiTech is a new contributor. Be nice, and check out our Code of Conduct.












MagiiTech is a new contributor. Be nice, and check out our Code of Conduct.
















Thanks for contributing an answer to Server Fault!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f956447%2fbind-set-port-for-forwarders%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

As a Security Precaution, the user account has been locked The Next CEO of Stack OverflowMS...

Список ссавців Італії Природоохоронні статуси | Список |...

Українські прізвища Зміст Історичні відомості |...