/srv/irclogs.ubuntu.com/2023/04/04/#ubuntu-server.txt

blahdeblahblackboxsw: Hmmm - OK.  Yes, this is definitely a new instance-id getting created.  It does seem weird, given that if I remove /var/lib/cloud/instance* and reboot, it runs correctly and sorts itself out.00:15
=== shokohsc2 is now known as shokohsc
ladedaI'm coming across an unusual issue when deploying Ubuntu 22.04 server to virtual machines on a VMware ESXi cluster. I am noticing that when the new virtual machine comes up that it does not do ARP for its default gateway, I am curious why this is?04:11
ladedaI would expect the behavior to be when the network interface is configured and a default gateway set that upon initialization of the interface a gratuitous arp would happen, but this is not the case with Ubuntu 22.04 from what I can tell CentOS 7, Rocky 8, AlmaLinux 8, RHEL 7, RHEL 8, Ubuntu 18.04, and Ubuntu 20.04 all have this behavior.04:15
luna-got access to the production Ubuntu Servers at work today07:17
effendy[m]ladeda: I've never thought of that. That's interesting. I'm curious, why do you need the gratuitous ARP here? Is there a specific scenario?09:27
=== shokohsc4 is now known as shokohsc
=== cpaelzer_ is now known as cpaelzer
=== JanC_ is now known as JanC
ladedaI'm coming across an unusual issue when deploying Ubuntu 22.04 server to virtual machines on a VMware ESXi cluster. I am noticing that when the new virtual machine comes up that it does not do ARP for its default gateway, I am curious why this is? I would expect the behavior to be when the network interface is configured and a default gateway set17:16
ladedathat upon initialization of the interface a gratuitous arp would happen, but this is not the case with Ubuntu 22.04 from what I can tell CentOS 7, Rocky 8, AlmaLinux 8, RHEL 7, RHEL 8, Ubuntu 18.04, and Ubuntu 20.04 all have this behavior.17:16
effendy[m]I see. I've no idea why this behaviour is different with Ubuntu 22.04. For my personally I don't think this is important unless I had something important that depended on that somehow, such as knowing the default gateway's mac (from the perspective of the ubuntu 22.04 server) beforehand.17:51
effendy[m]So it would be fine for me if the mac is added to the mac address table only when the server needs access to the internet, for instance.17:53
ArtfaithMagnificent day!18:08
ArtfaithFor some still unknown reason, the installed of `ubuntu-22.04.2-live-server-amd64` crashes at the block devices search.18:09
ArtfaithThis is how it looks like: https://i.imgur.com/d5U2TYG.png18:13
ArtfaithThe crash file: https://termbin.com/3seb18:14
ArtfaithI would highly appreciate any suggestion!18:14
Artfaith2020 had no such issues for example.18:15
Artfaiths/the installed of/the installer of/18:18
J_DarnleyI've forgotten what little I knew about deb packaging.  If I have a .dsc file how do I build the deb from it?18:36
sarnoldyou can use dget on it to download the needed tarballs and patches and whatnot; there's a --build flag there, in case you want to build it directly on your host. better is to use something like sbuild or pbuilder to use a build environment for it, but that requires more setup work18:47
J_Darnleythanks I'll try18:51
J_Darnleydget seems to expect a package name not .dsc file18:52
J_Darnleysbuild seems to need a special group18:54
J_Darnleypbuilder complains about interactive auth being needed18:59
J_DarnleyDammit I did this once in the past but I cannot recall what where or how I did it19:13
sdezielJ_Darnley: you can use `dget -xu https://url.to/package.dsc` then enter the dir and use `dpkg-buildpackage` with some flags (I use `dpkg-buildpackage -S -sa -us -uc`, then `dput` the files to my PPA builder)19:26
wingarmacCan someone help me resolve my problem? https://termbin.com/4yne - Additionaly nslookup from ns2 to ns1 https://termbin.com/a23x19:35
J_Darnleysdeziel: thanks progress with dpkg-thingy19:35
wingarmacI use ubuntu server 22.04 lts19:35
wingarmac wingarmac.org.zone file : https://termbin.com/544dg and reverse : https://termbin.com/4gzhl19:40
wingarmacthe problem is the right IP isn't used in the right context when using the full hostnames, and I do not know how to set this. 19:41
sarnoldI don't speak bind natively but I expected to see IPs in the reverse zone19:41
wingarmacWell I did understand that only the last number suffice in this case as a suggestion from GPTChat19:42
wingarmacsince the all zone is 10.5.5.0/2419:43
wingarmacAnd bind did work as expected before I added the apache's virtual host settings19:44
wingarmacI could ssh to every host as it should19:44
wingarmacI tried as last to create an aditional virtual IP for apache to listen to, so it could make the difference between therequest to server IP and those to the apache server itself.19:45
wingarmacBud I didn't succeed to make apache use 10.5.5.101 virtual instead of 10.5.5.1 real as default19:46
wingarmacwhen a virtual host gets connection it's because bind did resolve it in the right order. But this seam rather boolean is I express myself right. 19:47
wingarmacevery host has its IP and the virtual host IP as references. But it's the same name. So i'm looking a way to make it use the irght IP in right circumstances for each host.19:49
wingarmacIf used in browser, it should reolve the apache's IP, but if the hostname is used in else, it should resolve it's real IP, eventualy from its /etc/hosts file since its all set there for each.19:51
sarnoldwingarmac: hmmm, so, when eg you load http://mobile.wingarmac.org/, do you want the web browser to contact 10.5.5.4? or do you want the client to contact 10.5.5.1?19:52
wingarmacwhen browser all names are 10.5.5.101 for apache proxypass to the webmin port on real ip of host19:53
wingarmacwhen other service, real ip must be used when resolving full hostnames19:53
wingarmacapache server 10.5.5.101 is also a webmin host 10.5.5.1 and main bind server 192.168.1019:55
wingarmac192.168.1.1019:55
wingarmacI do not mix the IP's on zone's, so ns1 on VPN is 10.5.5.119:56
sarnoldhmm, do you need to use SVCS records or something like that to tell the browser, "ignore the actual IP of this hostname, go load this IP address instead" ? I know even less about this :(19:56
wingarmacfirst thing first. I need apache to use only 10.5.5.101 virtual IP of ubserv on VPN instead of 10.5.5.119:57
wingarmacTo make a difference between ubserv as host and ubserv as apache server19:58
sarnoldthis shows how to set up listening on only one address: https://httpd.apache.org/docs/2.4/bind.html19:59
wingarmacMaybe I should do the inverse. And leave apache on 10.5.5.1 and change the A records to inverse it. https://httpd.apache.org/docs/2.4/bind.html I've been on these page's but couldn't solve my problem with the tries to apply what's in there. That's why I'm here.20:00
J_Darnleywtf?! "my_global.h" who provides that and why ions't it marked as a dependency?21:03
sarnold$ apt-file search my_global.h21:04
sarnoldlibmariadb-dev: /usr/include/mariadb/my_global.h21:04
sarnoldlibmariadbd-dev: /usr/include/mariadb/server/my_global.h21:04
J_Darnleyoh it's mysql21:04
inscw00tableIn ubuntu 22 using the subiquity installer if I feed autoinstall config and the kernel argument ''autoinstall' it will start w/ no prompting.  If I feed autoinstall config and omit the kernel argument "autoinstall" it will ask me a question repeatedly I can't say "no" to.  Is there a way to apply the configuration I feed and then begin an interactive install?22:02
inscw00tableI'm basically trying to mooch off the unmodified installer iso to abuse it as a kind of rescue iso image.22:03
=== JanC is now known as Guest2516
=== JanC_ is now known as JanC
athosI am about to start the promotion process for isc-kea. I am wondering whether I should seed that in ~ubuntu-core-dev/ubuntu-seeds/+git/platform with isc-dhcp or in ~ubuntu-core-dev/ubuntu-seeds/+git/ubuntu with a coment saying this should move to platform once isc-dhcp is dropped22:38
athosthoughts? Cc bryceh cpaelzer rbasak22:38
rbasakathos: I'd expect to put it in platform/supported-misc-servers, but I'm not sure.23:21

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!