quest > 設定值 > 網路 > 介面卡2 > 內部網路

開機進linux
網路連線的地方設定
ip: 192.168.11.1
netmask: 255.255.255.0
gateway: 255.255.255.0

第二台一樣只是ip要設192.168.11.2

這樣就可以互ping了

Comment and share

Linux跟環境變數有關的檔案有兩個
/etc/profile
/etc/bashrc

理論上來說/etc/profile已是全域環境變數
但若是使用非互動式bash(程式大部分會用這個)
則會用到/etc/bashrc檔案

未免麻煩兩個都加就是了

profile, bashrc
1
2
JAVA_HOME=/usr/java/jdk1.7.0_55
PATH=$PATH:$JAVA_HOME/bin/

Comment and share

get the interface id of the loop back interface

1
netsh int ip sh int

add the address to id

1
2
netsh int ip add addr <ID> <IP>/32 st=ac sk=tr
netsh int ip add addr 1 192.168.2.59/32 st=ac sk=tr

delete the address from id

1
2
netsh int ip delete addr <ID> <IP>
netsh int ip delete addr 1 192.168.2.59

Comment and share

  1. 用firefox瀏覽器取得https網站的server crt,並存成local.crt

    1
    google firefox get ssl cert
  2. 利用keytool產生java client端要用的client keysotre

    1
    2
    keytool -import -alias ocsg.keystore -keystore ocsg.keystore -file localhost.crt
    #建立的同時要輸入密碼,密碼會在下一步用到
Continue reading

Cwza

Hello everyone.
I’m cwza.
Welcome to my blog.


Software Engineer


Taiwan/Taipei