| 1 | |
| 2 | == Network tracing == |
| 3 | |
| 4 | The network problem usually could be detected by log, but pcap files might talks more then other sources of information because it contains information about all packets received/send by guest. |
| 5 | To enable network tracking do the following |
| 6 | {{{ |
| 7 | # VBoxManage modify [your-vm] -nictrace[adapter-number] on -nicatracefile[adapter-number] file.pcap |
| 8 | # VirtualBox -startvm [your-vm] |
| 9 | }}} |
| 10 | |
| 11 | e.g. |
| 12 | {{{ |
| 13 | # VBoxManage modify "ubuntu" -nictrace1 on -nicatracefile1 file.pcap |
| 14 | # VirtualBox -startvm "ubuntu" |
| 15 | }}} |
| 16 | |
| 17 | '''Note:''' Don't forget to switch tracing of because your hdd will be eaten by pcap files in case of intensive network usage. The port-forwarding configuration might be affected by this setting also. |