Post

xen 네트워크 세팅

  1. eth0이 내부망이거나 공유기 환경인경우
    1
    2
    
    brctl addbr xenbr0
    brctl addif xenbr0 eth0
    
  2. eth0이 리얼 아이피고 nat를 걸어 사용할 경우
    1
    2
    3
    4
    5
    
    modprobe dummy
    ifconfig dummy0 up
    brctl addbr xenbr0
    brctl addif xenbr0 dummy0
    ifconfig dummy0 10.0.1.1 netmask 255.255.255.0
    

    그리고 입맛에 맞게 nat

This post is licensed under CC BY 4.0 by the author.

Trending Tags