Advertisement
Guest User

Untitled

a guest
Oct 10th, 2017
395
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. ### STEP 1: Add a static IP Address
  2. Log into the server add configure the static IP address
  3. username: user
  4. password: P@$$w0rd123
  5. ```bash
  6. nano /etc/network/interfaces
  7. iface eth0 inet dhcp #Replace with: iface eth0 inet static
  8.  
  9. address 10.253.0.50
  10. netmask 255.255.255.0
  11. network 10.253.0.0
  12. gateway 10.253.0.1
  13. dns-nameservers 8.8.8.8
  14.  
  15.  
  16. ifdown eth0
  17. ifup eth0
  18. ```
  19. ### STEP 2: SSH into Cyphon from your remote IP
  20. ```bash
  21. ssh user@xxx.xxx.xxx.xxx # Password is: P@$$w0rd123
  22. ```
  23. ### STEP 3: SETUP ELK
  24. Access Kibana on **cyphonserverip:5601** and add the index **cyphon-*** to kibana and choose the time field name as **@timestamp**
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement