2021.06.21 – Voice Message in Message Apps

I use differ Message Apps in iPhone and MacBook Pro: WhatsApp, Skype and FaceBook.

1.WhatsApp

1.1. Create and Send voice Messages
How to send voice messages?
https://faq.whatsapp.com/android/chats/how-to-send-voice-messages/?lang=en

1.2. Listening faster the received Voice Message
Fast Playback for voice messages?
https://indianexpress.com/article/technology/social/whatsapp-fast-playback-for-voice-messages-what-it-is-and-how-to-use-it-7346534/

2. Skype app similar to WhahApp
3. Facebook Messager similar to WhatApp

2021.04.29 – Create VMware Fusion Networks

This example is for:

  • MacBook PRO
  • VMware Fusion PRO
  • Terminal app

To do:

  • Quit VMware Fusion
  • Open Terminal app
  • Insert command:
MacBook-Pro ~ % sudo vim /Library/Preferences/VMware\ Fusion/networking
Password: *****
  • Edit networking as you need. Here is an example:
VERSION=1,0
 answer VNET_1_DHCP yes
 answer VNET_1_DHCP_CFG_HASH 94FBD644B069B37AC268E3AF0B92BED6229C9EAE
 answer VNET_1_HOSTONLY_NETMASK 255.255.255.0
 answer VNET_1_HOSTONLY_SUBNET 192.168.120.0
 answer VNET_1_VIRTUAL_ADAPTER yes
 answer VNET_8_DHCP yes
 answer VNET_8_DHCP_CFG_HASH 31A6A65AD36EBF281BD56B02C4F21576E1F247D6
 answer VNET_8_HOSTONLY_NETMASK 255.255.255.0
 answer VNET_8_HOSTONLY_SUBNET 192.168.100.0
 answer VNET_8_NAT yes
 answer VNET_8_VIRTUAL_ADAPTER yes
 answer VNET_90_DHCP no
 answer VNET_90_DISPLAY_NAME ge-0/0/0
 answer VNET_90_HOSTONLY_NETMASK 255.255.255.0
 answer VNET_90_HOSTONLY_SUBNET 172.17.90.0
 answer VNET_90_VIRTUAL_ADAPTER yes
 answer VNET_91_DHCP no
 answer VNET_91_DISPLAY_NAME ge-0/0/1
 answer VNET_91_HOSTONLY_NETMASK 255.255.255.0
 answer VNET_91_HOSTONLY_SUBNET 172.17.91.0
 answer VNET_91_VIRTUAL_ADAPTER yes
 answer VNET_93_DHCP no
 answer VNET_93_DISPLAY_NAME eth1
 answer VNET_93_HOSTONLY_NETMASK 255.255.255.0
 answer VNET_93_HOSTONLY_SUBNET 172.25.11.0
 answer VNET_93_NAT yes
 answer VNET_93_NAT_PARAM_UDP_TIMEOUT 30
 answer VNET_93_VIRTUAL_ADAPTER yes
 answer VNET_94_DHCP no
 answer VNET_94_DISPLAY_NAME eth2_to_ge-0/0/0
 answer VNET_94_HOSTONLY_NETMASK 255.255.255.0
 answer VNET_94_HOSTONLY_SUBNET 10.0.11.0
 answer VNET_94_NAT yes
 answer VNET_94_NAT_PARAM_UDP_TIMEOUT 30
 answer VNET_94_VIRTUAL_ADAPTER yes
  • To delete you can use V in view mode to launch “VISUAL LINE” mode. Select your lines and type d to delete them.
  • Add the networks you need.
  • Save and exit: :wq
  • Open Vmware Fusion and use the created networks. 

Good luck!!

2020.04.24 – Install Firewall pfSense Virtual on VMWare Fusion

A big part of solution I take from here: Pfsense: How to install Firewall Pfsense Virtual on VMWare

Phots for practice are here: https://photos.app.goo.gl/wWtMoRRcuJjTuoxM9

Other part from my blog 2020.04.1 – Building a VMware vSphere Virtual Lab with VMware Fusion – Part 2: Deploy and Configure a pfSense VM

Overview

This article is about creating a virtual machine firewall pfSense on VMWare Fusion virtualisation environment.

PfSense is Firewall open source, free for everyone. PfSense acts a firewall device and has full routing functionality as a high-end device

Read more

2020.04.23 – Juniper vRR installation into EVE-PRO

Inspiration in EVE guid: https://www.eve-ng.net/index.php/documentation/howtos/howto-add-juniper-vrr/ where it is made with version 17.4R1.16.

  • Note: I have installed three times.
    • Firs time with vRR 19.2R1.8 (vrr-bundle-kvm-19.2R1.8.tar) – workilg OK!
    • second time with vRR 20.1R1.11 (vrr-bundle-kvm-20.1R1.11.tar) – not work!
    • third time with vRR 19.4R1.10 (vrr-bundle-kvm-19.4R1.10.tar) – working OK!

The blog is about third installation exactly as the first installation.

Read more

2020.04.22 – Juniper vQFX installation into EVE-PRO

Inspiration in EVE guid: https://www.eve-ng.net/index.php/documentation/howtos/howto-add-juniper-vqfx/

Note in 2021.05.14: I used vQFX in my labs and I had many problems. PING does not work! At the version 20.2 also does not work ping. Now I install and try to use vQFX 20.3. I will come back here to say my result!!

Note in 2021.05.16: I tried all vQFX versions that I find to download from Juniper. No one work for me. Support EVE-PRO helped me with a vQFX 18.4 and was OK to ping between 2 different vQFX switches.

vQFX 18.4 contains different applications .qcow2 or .qcow or .img to download from Juniper. I used 2 Application Media 18.4R2-S2 but maybe EVE-PRO helped me with application, one or both, from Application Package.

To find a version it works, you have to try many possibility!!

Original article

Step 1

Use your Juniper access for login and download images.

Read more

2020.03.31 – Using vim command in Terminal in MacBook Pro

How edit files into vim:

  • -> ls and press Enter to list the contents of a particular directory
  • -> cd .. or cd filename(s) and press Enter to change to another directory (as in DOS)
  • -> sudo – to authenticate yourself a superuser to gain extra security privileges
  • -> vim filename to open a file in vim
  • -> i key to start editing the file
  • -> press Esc key then type :w and hit Enter key to save a file in Vim
  • -> press Esc key then type 😡 and hit Enter key to save a file and quit Vim
  • -> pressing the Esc key (pressing the Esc key again does nothing if you’re already in command mode)
  • -> :wq and press Enter to write the file to disk and quit vim
  • -> :w and press Enter to write the file to disk without quitting
  • -> :q and press Enter to quit vim without saving the file
  • -> :q! and presa Enter to exit a file opened with read-only

Example:

sudo vim /Library/Preferences/VMware\ Fusion/networking

I will update when I need and lear different things about vim.

2020.03.27 – Enterprise- & Service Provider-Style Bridging on a sigle Juniper vMX

Introduction

I am doing the lab from a blog that it was recommended by a person into LinkedIn internal Messaging communication. I do here!

Equipment and installations I used for this project::

  • MacBook Pro  (15-inch, 2016) with macOS Catalina version 10.15.3
  • VMware Fusion PRO Version 11.5.3
  • VMware ESXi 6.7
  • Juniper vMX 18.1R3.3 for ESXi

The starting point that inspire me is here: https://networkingpills.wordpress.com/2017/10/31/enterprise-service-provider-style-bridging-on-juniper-mx/

Read more