How to see the address dnsmasq is listening to without netstatnetstat or alternative in docker ubuntu server 16.04 containerdnsmasq: failed to create listening socket for port 53: Address already in useRestricted internet access on 14.04. Teamviewer works, websites don't loaddnsmasq without dns functionalitylink local (fe80::) addresses without scope make their way into /etc/resolv.conf and cause problemsZesty DNS resolution no longer accepts search domain setting from DHCP
Is there a coup going on in Bolivia?
What is the scientific term to describe the operation of a bong?
Outlining the climax made me lose interest in writing the actual story
Ideal Firearms for time travel or low tech universe exploration
What is the relationship between taxes and annual liquidation of the markets?
What can be found in towers of Tower Bridge?
Are there advantages to slotted wingtips?
Does the German President's apology for WWII reflect the prevailing views of the people of Germany?
How do impulse response guitar amp simulators work?
Why does Rome municipality seem to have a hard time maintaining the city?
Efficient stable sum of ordered numbers
Styling overlapping polygons of different layers
Does the sun cross other spiral arms in its movement around the galaxy's center?
Can I wire this light fixture set with the plate mounted directly to the stud?
"packing with a hard knot in the pit of his stomach" meaning
Why do the Rebels probe the section of the shield within the gate?
Is using RSA with SHA-1 considered as secure as HMAC-SHA-1?
Can a microwave oven cook chicken?
What does Darth Vader think Obi-Wan's referring to when Obi says "If you strike me down..."
How do HK restaurants keep wok-fried scallops white, with no visible sear marks?
Why is super hero technology never used by civilians?
Format a swedish phone number
Booking for intra-EU trains
Phrase/Word-pair for a variant of master-slave relationship
How to see the address dnsmasq is listening to without netstat
netstat or alternative in docker ubuntu server 16.04 containerdnsmasq: failed to create listening socket for port 53: Address already in useRestricted internet access on 14.04. Teamviewer works, websites don't loaddnsmasq without dns functionalitylink local (fe80::) addresses without scope make their way into /etc/resolv.conf and cause problemsZesty DNS resolution no longer accepts search domain setting from DHCP
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
I used to run sudo netstat -tulpen | grep dnsmasq
, but netstat is outdated. This answer says to use ss
as an alternative, but I cannot get the desired output. I.e. ss -ltu | grep dnsmasq
does not print anything, despite dnsmasq being obviously running (my domain gets resolved).
Can I use ss to see dnsmasq's listening address? If so: How? If not: What is the non-deprecated alternative to netstat?
dns dnsmasq netstat
add a comment
|
I used to run sudo netstat -tulpen | grep dnsmasq
, but netstat is outdated. This answer says to use ss
as an alternative, but I cannot get the desired output. I.e. ss -ltu | grep dnsmasq
does not print anything, despite dnsmasq being obviously running (my domain gets resolved).
Can I use ss to see dnsmasq's listening address? If so: How? If not: What is the non-deprecated alternative to netstat?
dns dnsmasq netstat
add a comment
|
I used to run sudo netstat -tulpen | grep dnsmasq
, but netstat is outdated. This answer says to use ss
as an alternative, but I cannot get the desired output. I.e. ss -ltu | grep dnsmasq
does not print anything, despite dnsmasq being obviously running (my domain gets resolved).
Can I use ss to see dnsmasq's listening address? If so: How? If not: What is the non-deprecated alternative to netstat?
dns dnsmasq netstat
I used to run sudo netstat -tulpen | grep dnsmasq
, but netstat is outdated. This answer says to use ss
as an alternative, but I cannot get the desired output. I.e. ss -ltu | grep dnsmasq
does not print anything, despite dnsmasq being obviously running (my domain gets resolved).
Can I use ss to see dnsmasq's listening address? If so: How? If not: What is the non-deprecated alternative to netstat?
dns dnsmasq netstat
dns dnsmasq netstat
asked Aug 12 at 7:01
crusycrusy
1033 bronze badges
1033 bronze badges
add a comment
|
add a comment
|
1 Answer
1
active
oldest
votes
sudo ss -ltup | grep dnsmasq
About your command: ss -ltu
, The -p
(Show process using socket) parameter is missing and -p
requires sudo
.
I tried-ltup
, but without sudo, so thanks
– crusy
Aug 12 at 7:27
add a comment
|
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
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/4.0/"u003ecc by-sa 4.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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1165098%2fhow-to-see-the-address-dnsmasq-is-listening-to-without-netstat%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
sudo ss -ltup | grep dnsmasq
About your command: ss -ltu
, The -p
(Show process using socket) parameter is missing and -p
requires sudo
.
I tried-ltup
, but without sudo, so thanks
– crusy
Aug 12 at 7:27
add a comment
|
sudo ss -ltup | grep dnsmasq
About your command: ss -ltu
, The -p
(Show process using socket) parameter is missing and -p
requires sudo
.
I tried-ltup
, but without sudo, so thanks
– crusy
Aug 12 at 7:27
add a comment
|
sudo ss -ltup | grep dnsmasq
About your command: ss -ltu
, The -p
(Show process using socket) parameter is missing and -p
requires sudo
.
sudo ss -ltup | grep dnsmasq
About your command: ss -ltu
, The -p
(Show process using socket) parameter is missing and -p
requires sudo
.
answered Aug 12 at 7:24
pimpim
2,2641 gold badge11 silver badges29 bronze badges
2,2641 gold badge11 silver badges29 bronze badges
I tried-ltup
, but without sudo, so thanks
– crusy
Aug 12 at 7:27
add a comment
|
I tried-ltup
, but without sudo, so thanks
– crusy
Aug 12 at 7:27
I tried
-ltup
, but without sudo, so thanks– crusy
Aug 12 at 7:27
I tried
-ltup
, but without sudo, so thanks– crusy
Aug 12 at 7:27
add a comment
|
Thanks for contributing an answer to Ask Ubuntu!
- 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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1165098%2fhow-to-see-the-address-dnsmasq-is-listening-to-without-netstat%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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