This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
#network param | |
IP=94.23.251.96 | |
elastic=10.0.0.1 | |
test=10.0.0.2 | |
#nat param 'VMip,source_port,destination_port' | |
rules_nat+=("$elastic,1021,22") | |
rules_nat+=("$elastic,9200,9200") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"Before : git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle | |
"First run : :BundleInstall | |
set nocompatible | |
filetype off | |
set rtp+=~/.vim/bundle/vundle/ | |
call vundle#rc() | |
Bundle 'gmarik/vundle' | |
Bundle 'scrooloose/nerdtree' |