sudo snap install juju --classic
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
00:05:32 execve("/usr/bin/ssh", ["ssh", "-v", "[email protected]", "-p", "2222"], 0x7fff1a744028 /* 16 vars */) = 0 | |
00:05:32 brk(NULL) = 0x56208d3ff000 | |
00:05:32 arch_prctl(0x3001 /* ARCH_??? */, 0x7ffdcdc36cc0) = -1 EINVAL (Invalid argument) | |
00:05:32 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) | |
00:05:32 openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 | |
00:05:32 fstat(3, {st_mode=S_IFREG|0644, st_size=36797, ...}) = 0 | |
00:05:32 mmap(NULL, 36797, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f1051810000 | |
00:05:32 close(3) = 0 | |
00:05:32 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libselinux.so.1", O_RDONLY|O_CLOEXEC) = 3 | |
00:05:32 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@p\0\0\0\0\0\0"..., 832) = 832 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23:50:16 execve("/usr/sbin/sshd", ["/usr/sbin/sshd", "-r", "-d", "-p", "2222"], 0x7ffc48636e98 /* 26 vars */) = 0 | |
23:50:16 brk(NULL) = 0x55897abb0000 | |
23:50:16 arch_prctl(0x3001 /* ARCH_??? */, 0x7ffce89a89a0) = -1 EINVAL (Invalid argument) | |
23:50:16 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) | |
23:50:16 openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 | |
23:50:16 fstat(3, {st_mode=S_IFREG|0644, st_size=23216, ...}) = 0 | |
23:50:16 mmap(NULL, 23216, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f73d378e000 | |
23:50:16 close(3) = 0 | |
23:50:16 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libwrap.so.0", O_RDONLY|O_CLOEXEC) = 3 | |
23:50:16 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 ;\0\0\0\0\0\0"..., 832) = 832 |
Host: Ubuntu 20.04
OVS bridge: br-ex
Openstack security group: allow all ip4.
Single network interface: 192.168.1.100, gateway 192.168.1.1 (home router).
The IP from the physical interface is moved to br-ex, physical nic added as port (that way I can allocate floating IPs from the home router's network 192.168.1.1/24).
Openstack: two networks, private (10.10.0.0/24), public (192.168.1.1/24).
Virual router (10.10.0.1 / 192.168.1.212) provides NAT to private network.
On the openstack host there's a manually added routing table: 10.10.0.0/24 via 192.168.1.212.
Instance: 10.10.0.135, Ubuntu 20.04 cloud image, default cloud config, except that I enabled root password to debug.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
url -kvX POST -A "GitHub-Hookshot/github" -H "Content-Type:application/json" -H "X-Github-Event:push" -d @hook.json $URL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apk info | xargs -n1 -I{} apk info -s {} | xargs -n4 | awk '{print $4,$1}' | sort -rn |