Created
November 1, 2013 21:08
-
-
Save jameskyle/7271981 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
| VAGRANTFILE_API_VERSION = "2" | |
| Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
| config.vm.hostname = "ops1.vtest.tfoundry.com" | |
| config.vm.box = "cloud-host" | |
| config.ssh.username = 'root' | |
| config.vm.network "private_network", ip: "192.168.3.10" | |
| config.vm.provider :vmware_fusion do |vm| | |
| vm.vmx['displayName'] = "ops1.virtual" | |
| #vm.vmx['ethernet1.connectionType'] = 'custom' | |
| #vm.vmx['ethernet1.vnet'] = 'vmnet2' | |
| #vm.vmx['ethernet2.connectionType'] = 'custom' | |
| #vm.vmx['ethernet2.vnet'] = 'vmnet3' | |
| end | |
| end | |
| ################# OUTPUT ################### | |
| The VMware "vmnet" devices are failing to start. The most common | |
| reason for this is collisions with existing network services. For | |
| example, if a hostonly network space collides with another hostonly | |
| network (such as with VirtualBox), it will fail to start. Likewise, | |
| if forwarded ports collide with other listening ports, it will | |
| fail to start. | |
| Vagrant does its best to fix these issues, but in some cases it | |
| cannot determine the root cause of these failures. | |
| Please verify you have no other colliding network services running. | |
| As a last resort, restarting your computer often fixes this issue. | |
| ################# ifconfig ##################### | |
| lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 16384 | |
| options=3<RXCSUM,TXCSUM> | |
| inet6 ::1 prefixlen 128 | |
| inet 127.0.0.1 netmask 0xff000000 | |
| inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1 | |
| nd6 options=1<PERFORMNUD> | |
| gif0: flags=8010<POINTOPOINT,MULTICAST> mtu 1280 | |
| stf0: flags=0<> mtu 1280 | |
| en0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500 | |
| ether 28:cf:e9:1f:78:6f | |
| inet6 fe80::2acf:e9ff:fe1f:786f%en0 prefixlen 64 scopeid 0x4 | |
| inet 10.0.1.2 netmask 0xffffff00 broadcast 10.0.1.255 | |
| nd6 options=1<PERFORMNUD> | |
| media: autoselect | |
| status: active | |
| en5: flags=8822<BROADCAST,SMART,SIMPLEX,MULTICAST> mtu 1500 | |
| options=60<TSO4,TSO6> | |
| ether 32:00:16:6f:8a:80 | |
| media: autoselect <full-duplex> | |
| status: inactive | |
| en6: flags=8822<BROADCAST,SMART,SIMPLEX,MULTICAST> mtu 1500 | |
| options=60<TSO4,TSO6> | |
| ether 32:00:16:6f:8a:81 | |
| media: autoselect <full-duplex> | |
| status: inactive | |
| p2p0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 2304 | |
| ether 0a:cf:e9:1f:78:6f | |
| media: autoselect | |
| status: inactive | |
| bbptp0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1356 | |
| ether 7e:06:fc:54:24:21 | |
| inet6 fe80::7c06:fcff:fe54:2421%bbptp0 prefixlen 64 scopeid 0x8 | |
| inet6 fd3b:ddcc:3c94:3e04:8051:1515:2531:ed08 prefixlen 64 | |
| nd6 options=1<PERFORMNUD> | |
| status: active | |
| p2p0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 2304 | |
| ether 0a:cf:e9:1f:78:6f | |
| media: autoselect | |
| status: inactive | |
| bbptp0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1356 | |
| ether 7e:06:fc:54:24:21 | |
| inet6 fe80::7c06:fcff:fe54:2421%bbptp0 prefixlen 64 scopeid 0x8 | |
| inet6 fd3b:ddcc:3c94:3e04:8051:1515:2531:ed08 prefixlen 64 | |
| nd6 options=1<PERFORMNUD> | |
| status: active | |
| utun0: flags=8051<UP,POINTOPOINT,RUNNING,MULTICAST> mtu 1380 | |
| inet6 fe80::c54e:4a29:6825:261a%utun0 prefixlen 64 scopeid 0x9 | |
| inet6 fd6e:7e0c:ef7b:78d3:c54e:4a29:6825:261a prefixlen 64 | |
| nd6 options=1<PERFORMNUD> | |
| vmnet1: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500 | |
| ether 00:50:56:c0:00:01 | |
| inet 172.16.241.1 netmask 0xffffff00 broadcast 172.16.241.255 | |
| vmnet8: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500 | |
| ether 00:50:56:c0:00:08 | |
| inet 172.16.47.1 netmask 0xffffff00 broadcast 172.16.47.255 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment