Network manager question
Where does the Network Manager command line Interface gather all of it's information
I don't have anything Inside of /etc/resolv.conf and dhcp grabs It's Information from route and /etc/hosts, etc/networks and /etc/services
, but all of those don't contain the contents I'm seeing with nmcli
I'll post an Example
nmcli -t -f GENERAL
enp2s0: connected to Wired connection 1
"Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller"
ethernet (r8169), 1x:0x:7x:1x:3x:4x, hw, mtu 1500
ip4 default
inet4 192.168.1.113/24
route4 0.0.0.0/0
route4 192.168.1.0/24
route4 169.254.0.0/16
route6 ff00::/8
route6 fe80::/64
route6 fe80::/64
wlp3s0b1: disconnected
"Broadcom Limited BCM4313 802.11bgn Wireless Network Adapter M5010 / XPS 8300)"
wifi (brcmsmac), Dx:Dx:9x:6x:1x:5x, hw, mtu 1500
lo: unmanaged
"lo"
loopback (unknown), 00:00:00:00:00:00, sw, mtu 65536
DNS configuration:
servers: 192.168.1.1
domains: fidelitycommunications.com
interface: enp2s0
So my question is where is the name fidelitycommunications.com and 192.168.1.1 hiding because I've tried running
grep -rnw /etc/ -e "fidelitycommunications.com"
grep -rnw /lib/ -e "fidelitycommunications.com"
grep -rnw /usr/ -e "fidelitycommunications.com"
and nothing came up, so here I am
Update: from strace
openat(8, "devices", O_RDONLY|O_NOFOLLOW|O_CLOEXEC|O_PATH) = 7
fstat(7, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
close(8) = 0
close(7) = 0
access("/sys/devices/uevent", F_OK) = -1 ENOENT (No such file or directory)
write(1, "t"lo"n", 6) = 6
write(1, "tloopback (unknown), 00:00:00:00"..., 54) = 54
write(1, "n", 1) = 1
write(1, "DNS configuration:n", 19) = 19
write(1, "tservers: 192.168.1.1n", 22) = 22
write(1, "tdomains: fidelitycommunications"..., 37 domains: fidelitycommunications.com
but i still can not find that ISP name for the life of me, I have looked everywhere in /sys/devices or so it feels like, That's the only section where the domain shows up
networking
add a comment |
Where does the Network Manager command line Interface gather all of it's information
I don't have anything Inside of /etc/resolv.conf and dhcp grabs It's Information from route and /etc/hosts, etc/networks and /etc/services
, but all of those don't contain the contents I'm seeing with nmcli
I'll post an Example
nmcli -t -f GENERAL
enp2s0: connected to Wired connection 1
"Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller"
ethernet (r8169), 1x:0x:7x:1x:3x:4x, hw, mtu 1500
ip4 default
inet4 192.168.1.113/24
route4 0.0.0.0/0
route4 192.168.1.0/24
route4 169.254.0.0/16
route6 ff00::/8
route6 fe80::/64
route6 fe80::/64
wlp3s0b1: disconnected
"Broadcom Limited BCM4313 802.11bgn Wireless Network Adapter M5010 / XPS 8300)"
wifi (brcmsmac), Dx:Dx:9x:6x:1x:5x, hw, mtu 1500
lo: unmanaged
"lo"
loopback (unknown), 00:00:00:00:00:00, sw, mtu 65536
DNS configuration:
servers: 192.168.1.1
domains: fidelitycommunications.com
interface: enp2s0
So my question is where is the name fidelitycommunications.com and 192.168.1.1 hiding because I've tried running
grep -rnw /etc/ -e "fidelitycommunications.com"
grep -rnw /lib/ -e "fidelitycommunications.com"
grep -rnw /usr/ -e "fidelitycommunications.com"
and nothing came up, so here I am
Update: from strace
openat(8, "devices", O_RDONLY|O_NOFOLLOW|O_CLOEXEC|O_PATH) = 7
fstat(7, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
close(8) = 0
close(7) = 0
access("/sys/devices/uevent", F_OK) = -1 ENOENT (No such file or directory)
write(1, "t"lo"n", 6) = 6
write(1, "tloopback (unknown), 00:00:00:00"..., 54) = 54
write(1, "n", 1) = 1
write(1, "DNS configuration:n", 19) = 19
write(1, "tservers: 192.168.1.1n", 22) = 22
write(1, "tdomains: fidelitycommunications"..., 37 domains: fidelitycommunications.com
but i still can not find that ISP name for the life of me, I have looked everywhere in /sys/devices or so it feels like, That's the only section where the domain shows up
networking
add a comment |
Where does the Network Manager command line Interface gather all of it's information
I don't have anything Inside of /etc/resolv.conf and dhcp grabs It's Information from route and /etc/hosts, etc/networks and /etc/services
, but all of those don't contain the contents I'm seeing with nmcli
I'll post an Example
nmcli -t -f GENERAL
enp2s0: connected to Wired connection 1
"Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller"
ethernet (r8169), 1x:0x:7x:1x:3x:4x, hw, mtu 1500
ip4 default
inet4 192.168.1.113/24
route4 0.0.0.0/0
route4 192.168.1.0/24
route4 169.254.0.0/16
route6 ff00::/8
route6 fe80::/64
route6 fe80::/64
wlp3s0b1: disconnected
"Broadcom Limited BCM4313 802.11bgn Wireless Network Adapter M5010 / XPS 8300)"
wifi (brcmsmac), Dx:Dx:9x:6x:1x:5x, hw, mtu 1500
lo: unmanaged
"lo"
loopback (unknown), 00:00:00:00:00:00, sw, mtu 65536
DNS configuration:
servers: 192.168.1.1
domains: fidelitycommunications.com
interface: enp2s0
So my question is where is the name fidelitycommunications.com and 192.168.1.1 hiding because I've tried running
grep -rnw /etc/ -e "fidelitycommunications.com"
grep -rnw /lib/ -e "fidelitycommunications.com"
grep -rnw /usr/ -e "fidelitycommunications.com"
and nothing came up, so here I am
Update: from strace
openat(8, "devices", O_RDONLY|O_NOFOLLOW|O_CLOEXEC|O_PATH) = 7
fstat(7, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
close(8) = 0
close(7) = 0
access("/sys/devices/uevent", F_OK) = -1 ENOENT (No such file or directory)
write(1, "t"lo"n", 6) = 6
write(1, "tloopback (unknown), 00:00:00:00"..., 54) = 54
write(1, "n", 1) = 1
write(1, "DNS configuration:n", 19) = 19
write(1, "tservers: 192.168.1.1n", 22) = 22
write(1, "tdomains: fidelitycommunications"..., 37 domains: fidelitycommunications.com
but i still can not find that ISP name for the life of me, I have looked everywhere in /sys/devices or so it feels like, That's the only section where the domain shows up
networking
Where does the Network Manager command line Interface gather all of it's information
I don't have anything Inside of /etc/resolv.conf and dhcp grabs It's Information from route and /etc/hosts, etc/networks and /etc/services
, but all of those don't contain the contents I'm seeing with nmcli
I'll post an Example
nmcli -t -f GENERAL
enp2s0: connected to Wired connection 1
"Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller"
ethernet (r8169), 1x:0x:7x:1x:3x:4x, hw, mtu 1500
ip4 default
inet4 192.168.1.113/24
route4 0.0.0.0/0
route4 192.168.1.0/24
route4 169.254.0.0/16
route6 ff00::/8
route6 fe80::/64
route6 fe80::/64
wlp3s0b1: disconnected
"Broadcom Limited BCM4313 802.11bgn Wireless Network Adapter M5010 / XPS 8300)"
wifi (brcmsmac), Dx:Dx:9x:6x:1x:5x, hw, mtu 1500
lo: unmanaged
"lo"
loopback (unknown), 00:00:00:00:00:00, sw, mtu 65536
DNS configuration:
servers: 192.168.1.1
domains: fidelitycommunications.com
interface: enp2s0
So my question is where is the name fidelitycommunications.com and 192.168.1.1 hiding because I've tried running
grep -rnw /etc/ -e "fidelitycommunications.com"
grep -rnw /lib/ -e "fidelitycommunications.com"
grep -rnw /usr/ -e "fidelitycommunications.com"
and nothing came up, so here I am
Update: from strace
openat(8, "devices", O_RDONLY|O_NOFOLLOW|O_CLOEXEC|O_PATH) = 7
fstat(7, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
close(8) = 0
close(7) = 0
access("/sys/devices/uevent", F_OK) = -1 ENOENT (No such file or directory)
write(1, "t"lo"n", 6) = 6
write(1, "tloopback (unknown), 00:00:00:00"..., 54) = 54
write(1, "n", 1) = 1
write(1, "DNS configuration:n", 19) = 19
write(1, "tservers: 192.168.1.1n", 22) = 22
write(1, "tdomains: fidelitycommunications"..., 37 domains: fidelitycommunications.com
but i still can not find that ISP name for the life of me, I have looked everywhere in /sys/devices or so it feels like, That's the only section where the domain shows up
networking
networking
edited Jan 21 at 23:22
hello moto
asked Jan 21 at 21:34
hello motohello moto
4551617
4551617
add a comment |
add a comment |
0
active
oldest
votes
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/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
});
}
});
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%2f1111771%2fnetwork-manager-question%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
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%2f1111771%2fnetwork-manager-question%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