Changes between Version 5 and Version 6 of vmiiam2018


Ignore:
Timestamp:
Sep 12, 2018, 7:07:12 AM (6 years ago)
Author:
admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • vmiiam2018

    v5 v6  
    33=== Setting up VM's ===
    44
    5 * You may download two ova file from ​here1, ​here2.
     5* You may download ova file from ​here.
    66
    77* Import them in to Oracle virtual box from File Import Appliance
     
    1111* Please double check your vm network connections before powering on them.
    1212
    13 * If all settings are satisfying, power on both Virtual Machines.
     13* If all settings are satisfying, power on both Virtual Machines.
     14
     15=== Log in to the VM ===
     16
     17Login credentials of both VM's are as follows.
     18
     19user: adminiam
     20
     21pass: iam@2018
     22
     23===  Setting UP IP Addresses for IDP ===
     24
     25After you start the VM change the IP address. You can find your IDP IP address from here
     26
     27Run the commands below to create a new network configuration file
     28{{{
     29sudo vi /etc/netplan/50-cloud-init.yaml
     30}}}
     31
     32Press i to edit the file
     33
     34Then configure IPv4 addresses as shown below
     35
     36{{{
     37# This file describes the network interfaces available on your system
     38# For more information, see netplan(5).
     39network:
     40    ethernets:
     41      enp0s3:     
     42         addresses:
     43         - 192.248.6.XY/24
     44         dhcp4: false
     45         gateway4: 192.248.6.254
     46         nameservers:
     47             addresses:
     48             - 192.248.6.201
     49             search:
     50             - instXY.ac.lk
     51    version: 2
     52}}}
     53Exit and save your changes by pressing esc and type :wq
     54
     55Restart the VM.
     56
     57Check the connectivity by using the '''ping''' command on some known IP address.
     58
     59===  Setting UP IP Addresses for SP ===
     60
     61Do the same with SP VM. You can find your SP IP address from here
     62
     63Run the commands below to create a new network configuration file
     64{{{
     65sudo vi /etc/netplan/50-cloud-init.yaml
     66}}}
     67
     68Press i to edit the file
     69
     70Then configure IPv4 addresses as shown below
     71
     72{{{
     73# This file describes the network interfaces available on your system
     74# For more information, see netplan(5).
     75network:
     76    ethernets:
     77      enp0s3:     
     78         addresses:
     79         - 192.248.6.XY/24
     80         dhcp4: false
     81         gateway4: 192.248.6.254
     82         nameservers:
     83             addresses:
     84             - 192.248.6.201
     85             search:
     86             - instXY.ac.lk
     87    version: 2
     88}}}
     89Exit and save your changes by pressing esc and type :wq
     90
     91Restart the VM.
     92
     93Check the connectivity by using the '''ping''' command on some known IP address.