USB network adaptor (tethered mobile) not automatically activatedSetting up Windows network on XenHow do I install a CentOS 5.5 in Xenserver?Static virtual IP in debian 6.0.4KVM/Libvirt bridged/routed networking not working on newer guest kernelssome nodes in a cluster has higher frame value in ifconfiggentoo bonded nics dropping packetsVirtual interface gets static IP, actual interface doesn't?KVM Network configuration + VLAN trunckLACP 802.3ad load balancing (bonding) on Ubuntu 18.04 not balancing evenlyhigh rx and dropped errors
Why Is Abelian Gauge Theory So Special?
How fast can a ship with rotating habitats be accelerated?
can’t run a function against EXEC
Does the UK have a written constitution?
How was film developed in the late 1920s?
The difference between Rad1 and Rfd1
Why is the Turkish president's surname spelt in Russian as Эрдоган, with г?
Analog is Obtuse!
How should I behave to assure my friends that I am not after their money?
Fluently Validation of Objects
Can a single server be associated with multiple domains?
How exactly is a normal force exerted, at the molecular level?
Does anycast addressing add additional latency in any way?
Drawing game tree - Tikz or Forest?
Can you sign using a digital signature itself?
“Faire” being used to mean “avoir l’air”?
Why does this function call behave sensibly after calling it through a typecasted function pointer?
Procedurally generate regions on island
Do I have to roll to maintain concentration if a target other than me who is affected by my concentration spell takes damage?
Who came up with the convolution theorem?
How can I convince my reader that I will not use a certain trope?
Should I include salary information on my CV?
What's the safest way to inform a new user of their password on my web site?
Symbol for "not absolutely continuous" in Latex
USB network adaptor (tethered mobile) not automatically activated
Setting up Windows network on XenHow do I install a CentOS 5.5 in Xenserver?Static virtual IP in debian 6.0.4KVM/Libvirt bridged/routed networking not working on newer guest kernelssome nodes in a cluster has higher frame value in ifconfiggentoo bonded nics dropping packetsVirtual interface gets static IP, actual interface doesn't?KVM Network configuration + VLAN trunckLACP 802.3ad load balancing (bonding) on Ubuntu 18.04 not balancing evenlyhigh rx and dropped errors
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
On a fresh installation of Ubuntu desktop (ubuntu-18.04.2-desktop-amd64) connecting an Android phone and enabling USB tethering automatically brings up a DHCP configured network adaptor:
ifconfig
ens194u1u2: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.42.134 netmask 255.255.255.0 broadcast 192.168.42.255
inet6 fe80::c8e8:67ff:fe18:78a6 prefixlen 64 scopeid 0x20<link>
ether ca:e8:67:18:78:a6 txqueuelen 1000 (Ethernet)
RX packets 11 bytes 1597 (1.5 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 7 bytes 1412 (1.4 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
Attempting the same process on exactly the same hardware but using Ubuntu Server (ubuntu-18.04.2-live-server-amd64) (output is hidden from ifconfig as the adaptor is down):
ifconfig -a
ens194u1u2: flags=4098<BROADCAST,MULTICAST> mtu 1500
ether ca:e8:67:18:78:a6 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
i.e. the adaptor has been detected here but does not appear to have been automatically configured.
While its possible to manually bring this adaptor up by modifying /etc/netplan/50-cloud-init.yaml:
network:
ethernets:
ens192:
dhcp4: true
ens194u1u2:
dhcp4: true
version: 2
and then running:
sudo netplan apply
I'd ideally like the behaviour to match the desktop version, i.e. when tethering the phone the adaptor is automatically configured for DHCP and brought UP.
Can anyone clarify what packages or config I need to change in the server version to achieve that?
linux ubuntu networking
add a comment |
On a fresh installation of Ubuntu desktop (ubuntu-18.04.2-desktop-amd64) connecting an Android phone and enabling USB tethering automatically brings up a DHCP configured network adaptor:
ifconfig
ens194u1u2: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.42.134 netmask 255.255.255.0 broadcast 192.168.42.255
inet6 fe80::c8e8:67ff:fe18:78a6 prefixlen 64 scopeid 0x20<link>
ether ca:e8:67:18:78:a6 txqueuelen 1000 (Ethernet)
RX packets 11 bytes 1597 (1.5 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 7 bytes 1412 (1.4 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
Attempting the same process on exactly the same hardware but using Ubuntu Server (ubuntu-18.04.2-live-server-amd64) (output is hidden from ifconfig as the adaptor is down):
ifconfig -a
ens194u1u2: flags=4098<BROADCAST,MULTICAST> mtu 1500
ether ca:e8:67:18:78:a6 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
i.e. the adaptor has been detected here but does not appear to have been automatically configured.
While its possible to manually bring this adaptor up by modifying /etc/netplan/50-cloud-init.yaml:
network:
ethernets:
ens192:
dhcp4: true
ens194u1u2:
dhcp4: true
version: 2
and then running:
sudo netplan apply
I'd ideally like the behaviour to match the desktop version, i.e. when tethering the phone the adaptor is automatically configured for DHCP and brought UP.
Can anyone clarify what packages or config I need to change in the server version to achieve that?
linux ubuntu networking
add a comment |
On a fresh installation of Ubuntu desktop (ubuntu-18.04.2-desktop-amd64) connecting an Android phone and enabling USB tethering automatically brings up a DHCP configured network adaptor:
ifconfig
ens194u1u2: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.42.134 netmask 255.255.255.0 broadcast 192.168.42.255
inet6 fe80::c8e8:67ff:fe18:78a6 prefixlen 64 scopeid 0x20<link>
ether ca:e8:67:18:78:a6 txqueuelen 1000 (Ethernet)
RX packets 11 bytes 1597 (1.5 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 7 bytes 1412 (1.4 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
Attempting the same process on exactly the same hardware but using Ubuntu Server (ubuntu-18.04.2-live-server-amd64) (output is hidden from ifconfig as the adaptor is down):
ifconfig -a
ens194u1u2: flags=4098<BROADCAST,MULTICAST> mtu 1500
ether ca:e8:67:18:78:a6 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
i.e. the adaptor has been detected here but does not appear to have been automatically configured.
While its possible to manually bring this adaptor up by modifying /etc/netplan/50-cloud-init.yaml:
network:
ethernets:
ens192:
dhcp4: true
ens194u1u2:
dhcp4: true
version: 2
and then running:
sudo netplan apply
I'd ideally like the behaviour to match the desktop version, i.e. when tethering the phone the adaptor is automatically configured for DHCP and brought UP.
Can anyone clarify what packages or config I need to change in the server version to achieve that?
linux ubuntu networking
On a fresh installation of Ubuntu desktop (ubuntu-18.04.2-desktop-amd64) connecting an Android phone and enabling USB tethering automatically brings up a DHCP configured network adaptor:
ifconfig
ens194u1u2: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.42.134 netmask 255.255.255.0 broadcast 192.168.42.255
inet6 fe80::c8e8:67ff:fe18:78a6 prefixlen 64 scopeid 0x20<link>
ether ca:e8:67:18:78:a6 txqueuelen 1000 (Ethernet)
RX packets 11 bytes 1597 (1.5 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 7 bytes 1412 (1.4 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
Attempting the same process on exactly the same hardware but using Ubuntu Server (ubuntu-18.04.2-live-server-amd64) (output is hidden from ifconfig as the adaptor is down):
ifconfig -a
ens194u1u2: flags=4098<BROADCAST,MULTICAST> mtu 1500
ether ca:e8:67:18:78:a6 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
i.e. the adaptor has been detected here but does not appear to have been automatically configured.
While its possible to manually bring this adaptor up by modifying /etc/netplan/50-cloud-init.yaml:
network:
ethernets:
ens192:
dhcp4: true
ens194u1u2:
dhcp4: true
version: 2
and then running:
sudo netplan apply
I'd ideally like the behaviour to match the desktop version, i.e. when tethering the phone the adaptor is automatically configured for DHCP and brought UP.
Can anyone clarify what packages or config I need to change in the server version to achieve that?
linux ubuntu networking
linux ubuntu networking
asked Jun 10 at 7:41
MarcFMarcF
1581 silver badge9 bronze badges
1581 silver badge9 bronze badges
add a comment |
add a comment |
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
);
);
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%2fserverfault.com%2fquestions%2f970779%2fusb-network-adaptor-tethered-mobile-not-automatically-activated%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 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.
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%2fserverfault.com%2fquestions%2f970779%2fusb-network-adaptor-tethered-mobile-not-automatically-activated%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