| 46 | | Import downloaded OVA files into Oracle virtual box from File > Import Appliance |
| 47 | | |
| 48 | | While importing make sure to select '''Generate new MAC addresses for all Network Adapters''' from '''MAC Address Policy'''. |
| 49 | | |
| 50 | | |
| 51 | | As soon as you import vm's, change your VM network connections as follows; |
| 52 | | |
| 53 | | * '''Ubuntu VM''' |
| 54 | | |
| 55 | | |
| 56 | | |
| 57 | | '''Adapter 1:'''[[br]] |
| 58 | | Attached to: Generic Driver[[br]] |
| 59 | | Name: UDPTunnel[[br]] |
| 60 | | Generic Properties:[[br]] |
| 61 | | dest=127.0.0.1[[br]] |
| 62 | | dport=50006[[br]] |
| 63 | | sport=40006[[br]] |
| 64 | | Cable Connected |
| 65 | | * Ip address for '''Ubuntu VM''' already setup for you and if you want to change it; |
| 66 | | {{{ |
| 67 | | #vim /etc/netplan/00-installer-config.yaml |
| 68 | | }}} |
| 69 | | |
| 70 | | Do the changes according to your requirement; |
| 71 | | {{{ |
| 72 | | network: |
| 73 | | version: 2 |
| 74 | | ethernets: |
| 75 | | enp0s3: |
| 76 | | addresses: [10.1.5.12/24] |
| 77 | | gateway4: 10.1.5.254 |
| 78 | | nameservers: |
| 79 | | addresses: [8.8.8.8, 8.8.4.4] |
| 80 | | |
| 81 | | }}} |