| 2 | Import downloaded Ubuntu 20.04 for Smokeping OVA file into Oracle virtual box from File > Import Appliance |
| 3 | |
| 4 | While importing make sure to select '''Generate new MAC addresses for all Network Adapters''' from '''MAC Address Policy'''. |
| 5 | |
| 6 | |
| 7 | As soon as you import vm's, change your VM network connections as follows; |
| 8 | |
| 9 | * '''Smokeping VM''' |
| 10 | |
| 11 | |
| 12 | |
| 13 | '''Adapter 1:'''[[br]] |
| 14 | Attached to: Generic Driver[[br]] |
| 15 | Name: UDPTunnel[[br]] |
| 16 | Generic Properties:[[br]] |
| 17 | dest=127.0.0.1[[br]] |
| 18 | dport=50006[[br]] |
| 19 | sport=40006[[br]] |
| 20 | Cable Connected |
| 21 | * Ip address for '''Smokeping''' already setup for you and if you want to change it; |
| 22 | {{{ |
| 23 | #vim /etc/netplan/00-installer-config.yaml |
| 24 | }}} |
| 25 | |
| 26 | Do the changes according to your requirement; |
| 27 | {{{ |
| 28 | network: |
| 29 | version: 2 |
| 30 | ethernets: |
| 31 | enp0s3: |
| 32 | addresses: [10.1.5.12/24] |
| 33 | gateway4: 10.1.5.254 |
| 34 | nameservers: |
| 35 | addresses: [8.8.8.8, 8.8.4.4] |
| 36 | |
| 37 | }}} |
| 38 | |