fix ip
diff --git a/vm-setup-lxc.sh b/vm-setup-lxc.sh
index 5d983e1..01cc292 100644
--- a/vm-setup-lxc.sh
+++ b/vm-setup-lxc.sh
@@ -13,7 +13,7 @@
 
 sudo lxc-create --name onos1 -t download -- --dist ubuntu --release trusty --arch amd64
 
-sudo sh -c "echo lxc.network.ipv4=10.0.3.11 >> /var/lib/lxc/onos1/config"
+sudo sh -c "echo lxc.network.ipv4=10.1.3.11 >> /var/lib/lxc/onos1/config"
 sudo sh -c "echo lxc.start.auto=1 >> /var/lib/lxc/onos1/config"
 
 sudo lxc-start --name onos1 --daemon
@@ -21,7 +21,7 @@
 sudo lxc-attach --name onos1 -- /bin/bash -c "echo sdn:rocks | chpasswd"
 sudo lxc-attach --name onos1 -- /bin/bash -c "echo \"sdn ALL=(ALL) NOPASSWD:ALL\" > /etc/sudoers.d/sdn"
 sudo lxc-attach --name onos1 -- apt-get update
-sudo lxc-attach --name onos1 -- apt-get install openssh-server
+sudo lxc-attach --name onos1 -- apt-get install openssh-server -y
 sudo lxc-attach --name onos1 -- apt-get install software-properties-common -y
 sudo lxc-attach --name onos1 -- add-apt-repository ppa:webupd8team/java -y
 sudo lxc-attach --name onos1 -- apt-get update