QEMU host-only networking using tap devices

I'm trying to setup host-only networking on my QEMU VM running Arch (actually, the Archiso; there is no Arch installation present yet). A short summary:
What I want
connect to the host from the guest system
connect to the guest from the host system
using a tap device (to avoid user-mode networking) on a network bridge (to connect guest and host)
Eventually, I want to run an AMP stack on the VM for web development. (Let's, for now, ignore the fact that I might need an internet connection later on to install packages)
What I tried
I first set up a tap device:
ip tuntap add dev tap0 mode tap
and then a network bridge:
BRIDGE='qemubr0'
brctl addbr ${BRIDGE}
brctl addif ${BRIDGE} tap0
ip link set up dev ${BRIDGE}
The relevant parameters I run QEMU with are:
qemu-system-x86_64 \
-net nic \
-net tap,ifname=tap0,script=no
QEMU starts without any errors, but trying to ping the host from within the VM results in:
-- VM:
# ping 10.0.2.2
connect: Network is unreachable
(FYI: 10.0.2.2 is supposed to be the default IP address of the host system (?) according to http://wiki.qemu.org/Documentation/Networking )
Relevant logs/outputs
dmesg on the host machine:
[ 0.339337] NET: Registered protocol family 2
[ 0.339670] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[ 0.339851] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[ 0.340102] TCP: Hash tables configured (established 32768 bind 32768)
[ 0.340171] TCP: reno registered
[ 0.340182] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[ 0.340226] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[ 0.340327] NET: Registered protocol family 1
[ 0.340353] pci 0000:00:02.0: Video device with shadowed ROM
[ 0.341863] PCI: CLS 64 bytes, default 64
[ 0.341937] Unpacking initramfs...
[ 0.503984] Freeing initrd memory: 4908K (ffff88003765a000 - ffff880037b25000)
[ 0.504055] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.504060] software IO TLB [mem 0xb94a1000-0xbd4a1000] (64MB) mapped at [ffff8800b94a1000-ffff8800bd4a0fff]
[ 0.504112] Simple Boot Flag at 0x35 set to 0x1
[ 0.504352] microcode: CPU0 sig=0x1067a, pf=0x80, revision=0xa0c
[ 0.504364] microcode: CPU1 sig=0x1067a, pf=0x80, revision=0xa0c
[ 0.504475] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
[ 0.504524] Scanning for low memory corruption every 60 seconds
[ 0.505041] futex hash table entries: 1024 (order: 4, 65536 bytes)
[ 0.505090] Initialise system trusted keyring
[ 0.505685] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 0.508836] zpool: loaded
[ 0.508841] zbud: loaded
[ 0.509100] VFS: Disk quotas dquot_6.5.2
[ 0.509170] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.509392] msgmni has been set to 7699
[ 0.509494] Key type big_key registered
[ 0.509767] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[ 0.509826] io scheduler noop registered
[ 0.509830] io scheduler deadline registered
[ 0.509893] io scheduler cfq registered (default)
[ 0.510198] pcieport 0000:00:1c.0: irq 24 for MSI/MSI-X
[ 0.510482] pcieport 0000:00:1c.1: irq 25 for MSI/MSI-X
[ 0.510705] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[ 0.510713] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
[ 0.510744] pcieport 0000:00:1c.1: Signaling PME through PCIe PME interrupt
[ 0.510748] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
[ 0.510754] pcie_pme 0000:00:1c.1:pcie01: service driver pcie_pme loaded
[ 0.510785] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 0.510847] pciehp 0000:00:1c.0:pcie04: Slot #0 AttnBtn- AttnInd- PwrInd- PwrCtrl- MRL- Interlock- NoCompl- LLActRep+
[ 1.506690] tsc: Refined TSC clocksource calibration: 1396.499 MHz
[ 1.843356] pciehp 0000:00:1c.0:pcie04: Timeout on hotplug command 0x00000000 (issued 1333 msec ago)
[ 1.843368] pciehp 0000:00:1c.0:pcie04: service driver pciehp loaded
[ 1.843390] pciehp 0000:00:1c.1:pcie04: Slot #1 AttnBtn- AttnInd- PwrInd- PwrCtrl- MRL- Interlock- NoCompl- LLActRep+
[ 2.506739] Switched to clocksource tsc
[ 3.176680] pciehp 0000:00:1c.1:pcie04: Timeout on hotplug command 0x00000000 (issued 1333 msec ago)
[ 3.176691] pciehp 0000:00:1c.1:pcie04: service driver pciehp loaded
[ 3.176703] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 3.176768] vesafb: mode is 1440x900x32, linelength=5760, pages=0
[ 3.176770] vesafb: scrolling: redraw
[ 3.176774] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 3.176807] vesafb: framebuffer at 0xd0000000, mapped to 0xffffc90004780000, using 5120k, total 5120k
[ 3.235921] Console: switching to colour frame buffer device 180x56
[ 3.294769] fb0: VESA VGA frame buffer device
[ 3.294803] intel_idle: does not run on family 6 model 23
[ 3.294882] GHES: HEST is not enabled!
[ 3.294990] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[ 3.316009] 0000:00:03.3: ttyS0 at I/O 0x1830 (irq = 17, base_baud = 115200) is a 16550A
[ 3.316238] Linux agpgart interface v0.103
[ 3.316307] rtc_cmos 00:02: RTC can wake from S4
[ 3.316496] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
[ 3.316535] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[ 3.316560] ledtrig-cpu: registered to indicate activity on CPUs
[ 3.316751] TCP: cubic registered
[ 3.316954] NET: Registered protocol family 10
[ 3.317338] NET: Registered protocol family 17
[ 3.317735] Loading compiled-in X.509 certificates
[ 3.317757] registered taskstats version 1
[ 3.318307] Magic number: 15:252:84
[ 3.318413] rtc_cmos 00:02: setting system clock to 2015-01-01 16:05:44 UTC (1420128344)
[ 3.318617] PM: Hibernation image not present or could not be loaded.
[ 3.320772] Freeing unused kernel memory: 1136K (ffffffff818e2000 - ffffffff819fe000)
[ 3.320775] Write protecting the kernel read-only data: 8192k
[ 3.324495] Freeing unused kernel memory: 748K (ffff880001545000 - ffff880001600000)
[ 3.326086] Freeing unused kernel memory: 336K (ffff8800017ac000 - ffff880001800000)
[ 3.336977] random: systemd-tmpfile urandom read with 4 bits of entropy available
[ 3.363462] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[ 3.372761] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 3.372934] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 3.379297] ACPI: bus type USB registered
[ 3.379343] usbcore: registered new interface driver usbfs
[ 3.379364] usbcore: registered new interface driver hub
[ 3.380595] usbcore: registered new device driver usb
[ 3.381344] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 3.381800] uhci_hcd: USB Universal Host Controller Interface driver
[ 3.381991] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[ 3.382003] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
[ 3.382015] uhci_hcd 0000:00:1a.0: detected 2 ports
[ 3.382060] uhci_hcd 0000:00:1a.0: irq 20, io base 0x00001840
[ 3.382412] hub 1-0:1.0: USB hub found
[ 3.382427] hub 1-0:1.0: 2 ports detected
[ 3.383010] uhci_hcd 0000:00:1a.1: UHCI Host Controller
[ 3.383021] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 2
[ 3.383032] uhci_hcd 0000:00:1a.1: detected 2 ports
[ 3.383073] uhci_hcd 0000:00:1a.1: irq 21, io base 0x00001860
[ 3.383523] hub 2-0:1.0: USB hub found
[ 3.383649] hub 2-0:1.0: 2 ports detected
[ 3.384187] uhci_hcd 0000:00:1a.2: UHCI Host Controller
[ 3.384197] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 3
[ 3.384207] uhci_hcd 0000:00:1a.2: detected 2 ports
[ 3.384245] uhci_hcd 0000:00:1a.2: irq 22, io base 0x00001880
[ 3.384679] hub 3-0:1.0: USB hub found
[ 3.384693] hub 3-0:1.0: 2 ports detected
[ 3.385046] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 3.385056] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
[ 3.385067] uhci_hcd 0000:00:1d.0: detected 2 ports
[ 3.385104] uhci_hcd 0000:00:1d.0: irq 16, io base 0x000018a0
[ 3.385391] hub 4-0:1.0: USB hub found
[ 3.385405] hub 4-0:1.0: 2 ports detected
[ 3.386100] ehci-pci: EHCI PCI platform driver
[ 3.386149] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[ 3.386159] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 5
[ 3.386169] uhci_hcd 0000:00:1d.1: detected 2 ports
[ 3.386210] uhci_hcd 0000:00:1d.1: irq 17, io base 0x000018c0
[ 3.386499] hub 5-0:1.0: USB hub found
[ 3.386512] hub 5-0:1.0: 2 ports detected
[ 3.387422] ehci-pci 0000:00:1a.7: EHCI Host Controller
[ 3.387433] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 6
[ 3.387454] ehci-pci 0000:00:1a.7: debug port 1
[ 3.390536] SCSI subsystem initialized
[ 3.391377] ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
[ 3.391407] ehci-pci 0000:00:1a.7: irq 23, io mem 0xf0805c00
[ 3.393114] libata version 3.00 loaded.
[ 3.400023] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[ 3.400556] hub 6-0:1.0: USB hub found
[ 3.400572] hub 6-0:1.0: 6 ports detected
[ 3.420762] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[ 3.423437] hub 1-0:1.0: USB hub found
[ 3.423452] hub 1-0:1.0: 2 ports detected
[ 3.446764] hub 2-0:1.0: USB hub found
[ 3.446781] hub 2-0:1.0: 2 ports detected
[ 3.470096] hub 3-0:1.0: USB hub found
[ 3.470113] hub 3-0:1.0: 2 ports detected
[ 3.470446] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[ 3.470457] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7
[ 3.470467] uhci_hcd 0000:00:1d.2: detected 2 ports
[ 3.470510] uhci_hcd 0000:00:1d.2: irq 18, io base 0x000018e0
[ 3.470855] hub 7-0:1.0: USB hub found
[ 3.470871] hub 7-0:1.0: 2 ports detected
[ 3.471114] ahci 0000:00:1f.2: version 3.0
[ 3.471277] ahci 0000:00:1f.2: irq 26 for MSI/MSI-X
[ 3.471324] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
[ 3.471354] ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x1 impl SATA mode
[ 3.471359] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ccc
[ 3.472602] scsi host0: ahci
[ 3.472778] scsi host1: ahci
[ 3.472926] scsi host2: ahci
[ 3.475424] scsi host3: ahci
[ 3.475545] ata1: SATA max UDMA/133 abar m2048@0xf0805000 port 0xf0805100 irq 26
[ 3.475549] ata2: DUMMY
[ 3.475551] ata3: DUMMY
[ 3.475553] ata4: DUMMY
[ 3.476505] ehci-pci 0000:00:1d.7: EHCI Host Controller
[ 3.476517] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 8
[ 3.476540] ehci-pci 0000:00:1d.7: debug port 1
[ 3.480454] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
[ 3.480479] ehci-pci 0000:00:1d.7: irq 19, io mem 0xf0806000
[ 3.490041] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 3.490373] hub 8-0:1.0: USB hub found
[ 3.490387] hub 8-0:1.0: 6 ports detected
[ 3.513423] hub 4-0:1.0: USB hub found
[ 3.513436] hub 4-0:1.0: 2 ports detected
[ 3.536764] hub 5-0:1.0: USB hub found
[ 3.536781] hub 5-0:1.0: 2 ports detected
[ 3.560098] hub 7-0:1.0: USB hub found
[ 3.560115] hub 7-0:1.0: 2 ports detected
[ 3.793361] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 3.793627] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[ 3.793633] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[ 3.793664] ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 (SET FEATURES) succeeded
[ 3.793670] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[ 3.793788] ata1.00: ATA-8: TOSHIBA THNS128GG4BAAA-NonFDE, AGLA0203, max UDMA/100
[ 3.793792] ata1.00: 250069680 sectors, multi 16: LBA48
[ 3.794031] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[ 3.794035] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[ 3.794065] ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 (SET FEATURES) succeeded
[ 3.794070] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[ 3.794186] ata1.00: configured for UDMA/100
[ 3.794336] scsi 0:0:0:0: Direct-Access ATA TOSHIBA THNS128G 0203 PQ: 0 ANSI: 5
[ 3.826124] sd 0:0:0:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB)
[ 3.826227] sd 0:0:0:0: [sda] Write Protect is off
[ 3.826232] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 3.826278] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 3.827934] sda: sda1 sda2 sda3
[ 3.828454] sd 0:0:0:0: [sda] Attached SCSI disk
[ 3.863366] device-mapper: uevent: version 1.0.3
[ 3.863509] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: [email protected]
[ 13.087453] random: nonblocking pool is initialized
[ 17.023466] NET: Registered protocol family 38
[ 17.304211] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null)
[ 17.773165] thinkpad_ec: thinkpad_ec 0.41 loaded.
[ 17.776308] tp_smapi 0.41 loading...
[ 17.776557] tp_smapi successfully loaded (smapi_port=0xb2).
[ 17.785849] EXT4-fs (dm-0): re-mounted. Opts: data=ordered
[ 18.128026] Monitor-Mwait will be used to enter C-1 state
[ 18.128038] Monitor-Mwait will be used to enter C-2 state
[ 18.128045] Monitor-Mwait will be used to enter C-3 state
[ 18.128052] tsc: Marking TSC unstable due to TSC halts in idle
[ 18.128109] ACPI: acpi_idle registered with cpuidle
[ 18.128216] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
[ 18.128538] ACPI: Lid Switch [LID]
[ 18.128632] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3
[ 18.128638] ACPI: Sleep Button [SLPB]
[ 18.128774] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
[ 18.128779] ACPI: Power Button [PWRF]
[ 18.133197] Switched to clocksource hpet
[ 18.157152] agpgart-intel 0000:00:00.0: Intel GM45 Chipset
[ 18.157193] agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
[ 18.158391] agpgart-intel 0000:00:00.0: detected 32768K stolen memory
[ 18.158864] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
[ 18.161295] thermal LNXTHERM:00: registered as thermal_zone0
[ 18.161300] ACPI: Thermal Zone [THM0] (49 C)
[ 18.163180] thermal LNXTHERM:01: registered as thermal_zone1
[ 18.163184] ACPI: Thermal Zone [THM1] (47 C)
[ 18.201123] systemd-journald[151]: Received request to flush runtime journal from PID 1
[ 18.211042] tpm_tis 00:05: 1.2 TPM (device-id 0x1020, rev-id 6)
[ 18.211049] tpm_tis 00:05: Intel iTPM workaround enabled
[ 18.214146] Non-volatile memory driver v1.3
[ 18.215056] ACPI: Battery Slot [BAT0] (battery present)
[ 18.216407] ACPI: AC Adapter [AC] (on-line)
[ 18.254681] [drm] Initialized drm 1.1.0 20060810
[ 18.486984] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 18.488981] ACPI Warning: SystemIO range 0x0000000000001028-0x000000000000102f conflicts with OpRegion 0x0000000000001000-0x000000000000107f (\_SB_.PCI0.LPC_.PMIO) (20140724/utaddress-258)
[ 18.488992] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 18.488998] ACPI Warning: SystemIO range 0x00000000000011b0-0x00000000000011bf conflicts with OpRegion 0x0000000000001180-0x00000000000011ff (\_SB_.PCI0.LPC_.LPIO) (20140724/utaddress-258)
[ 18.489003] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 18.489006] ACPI Warning: SystemIO range 0x0000000000001180-0x00000000000011af conflicts with OpRegion 0x0000000000001180-0x00000000000011ff (\_SB_.PCI0.LPC_.LPIO) (20140724/utaddress-258)
[ 18.489011] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 18.489014] lpc_ich: Resource conflict(s) found affecting gpio_ich
[ 18.489532] wmi: Mapper loaded
[ 18.496450] i801_smbus 0000:00:1f.3: SMBus using PCI Interrupt
[ 18.528954] thinkpad_acpi: ThinkPad ACPI Extras v0.25
[ 18.528960] thinkpad_acpi: http://ibm-acpi.sf.net/
[ 18.528962] thinkpad_acpi: ThinkPad BIOS 6EET55WW (3.15 ), EC 6EHT11WW-1.05
[ 18.528965] thinkpad_acpi: Lenovo ThinkPad X301, model 27763JG
[ 18.562827] mei_me 0000:00:03.0: irq 27 for MSI/MSI-X
[ 18.576844] thinkpad_acpi: detected a 16-level brightness capable ThinkPad
[ 18.578163] thinkpad_acpi: radio switch found; radios are enabled
[ 18.578329] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
[ 18.578333] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
[ 18.589581] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one
[ 18.589742] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
[ 18.593495] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input5
[ 18.602509] input: PC Speaker as /devices/platform/pcspkr/input/input6
[ 18.608125] cfg80211: Calling CRDA to update world regulatory domain
[ 18.608227] [drm] Memory usable by graphics device = 2048M
[ 18.608232] checking generic (d0000000 500000) vs hw (d0000000 10000000)
[ 18.608235] fb: switching to inteldrmfb from VESA VGA
[ 18.608267] Console: switching to colour dummy device 80x25
[ 18.608458] [drm] Replacing VGA console driver
[ 18.627881] Intel(R) Wireless WiFi driver for Linux, in-tree:
[ 18.627886] Copyright(c) 2003- 2014 Intel Corporation
[ 18.628049] iwlwifi 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
[ 18.628121] iwlwifi 0000:03:00.0: irq 28 for MSI/MSI-X
[ 18.633437] i915 0000:00:02.0: irq 29 for MSI/MSI-X
[ 18.633498] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 18.633501] [drm] Driver supports precise vblank timestamp query.
[ 18.633597] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[ 18.643232] iwlwifi 0000:03:00.0: loaded firmware version 8.83.5.1 build 33692 op_mode iwldvm
[ 18.691553] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG disabled
[ 18.691558] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
[ 18.691561] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
[ 18.691565] iwlwifi 0000:03:00.0: Detected Intel(R) Ultimate N WiFi Link 5300 AGN, REV=0x24
[ 18.691646] iwlwifi 0000:03:00.0: L1 Disabled - LTR Disabled
[ 18.728972] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: data=ordered
[ 18.767043] iTCO_vendor_support: vendor-support=0
[ 18.775548] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[ 18.775618] iTCO_wdt: Found a ICH9M-E TCO device (Version=2, TCOBASE=0x1060)
[ 18.781996] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[ 18.792476] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[ 18.822944] iwlwifi 0000:03:00.0 wls1: renamed from wlan0
[ 18.836659] fbcon: inteldrmfb (fb0) is primary device
[ 19.343552] Console: switching to colour frame buffer device 180x56
[ 19.352308] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[ 19.352310] i915 0000:00:02.0: registered panic notifier
[ 19.375020] ACPI: Video Device [VID] (multi-head: yes rom: no post: no)
[ 19.397558] acpi device:01: registered as cooling_device2
[ 19.398077] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input8
[ 19.398394] [drm] Initialized i915 1.6.0 20140725 for 0000:00:02.0 on minor 0
[ 19.398598] snd_hda_intel 0000:00:1b.0: irq 30 for MSI/MSI-X
[ 19.444984] sound hdaudioC0D0: CX20561 (Hermosa): BIOS auto-probing.
[ 19.445424] sound hdaudioC0D0: autoconfig: line_outs=1 (0x1a/0x0/0x0/0x0/0x0) type:speaker
[ 19.445428] sound hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 19.445432] sound hdaudioC0D0: hp_outs=2 (0x19/0x16/0x0/0x0/0x0)
[ 19.445435] sound hdaudioC0D0: mono: mono_out=0x0
[ 19.445438] sound hdaudioC0D0: dig-out=0x1c/0x0
[ 19.445440] sound hdaudioC0D0: inputs:
[ 19.445444] sound hdaudioC0D0: Mic=0x18
[ 19.445447] sound hdaudioC0D0: Internal Mic=0x1d
[ 19.445450] sound hdaudioC0D0: Dock Mic=0x17
[ 19.446528] sound hdaudioC0D0: Enable sync_write for stable communication
[ 19.460104] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/hdaudioC0D0/input9
[ 19.460484] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[ 19.460612] input: HDA Intel Dock Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[ 19.460739] input: HDA Intel Dock Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[ 19.460861] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[ 19.507357] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.2, id: 0x1a0b1, caps: 0xd047b3/0xb40000/0xa0000, board id: 71, fw id: 572156
[ 19.507368] psmouse serio1: synaptics: serio: Synaptics pass-through port at isa0060/serio1/input0
[ 19.552922] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input7
[ 19.553788] iwlwifi 0000:03:00.0: L1 Disabled - LTR Disabled
[ 19.554188] iwlwifi 0000:03:00.0: Radio type=0x0-0x2-0x0
[ 19.559479] mousedev: PS/2 mouse device common for all mice
[ 19.687534] iwlwifi 0000:03:00.0: L1 Disabled - LTR Disabled
[ 19.687940] iwlwifi 0000:03:00.0: Radio type=0x0-0x2-0x0
[ 19.715231] IPv6: ADDRCONF(NETDEV_UP): wls1: link is not ready
[ 20.522949] cfg80211: Calling CRDA to update world regulatory domain
[ 23.184174] wls1: authenticate with 34:31:c4:5f:07:d1
[ 23.190197] wls1: send auth to 34:31:c4:5f:07:d1 (try 1/3)
[ 23.193077] wls1: authenticated
[ 23.193382] wls1: associate with 34:31:c4:5f:07:d1 (try 1/3)
[ 23.201867] wls1: RX AssocResp from 34:31:c4:5f:07:d1 (capab=0x431 status=0 aid=4)
[ 23.213427] wls1: associated
[ 23.213484] IPv6: ADDRCONF(NETDEV_CHANGE): wls1: link becomes ready
[ 23.213555] cfg80211: Calling CRDA to update world regulatory domain
[ 24.474590] psmouse serio2: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
[ 24.727431] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input14
[ 26.135183] fuse init (API version 7.23)
[ 325.938870] wls1: AP 34:31:c4:5f:07:d1 changed bandwidth, new config is 2432 MHz, width 1 (2432/0 MHz)
[ 1198.431306] perf interrupt took too long (2511 > 2495), lowering kernel.perf_event_max_sample_rate to 50100
[ 1284.185106] tun: Universal TUN/TAP device driver, 1.6
[ 1284.185111] tun: (C) 1999-2004 Max Krasnyansky <[email protected]>
[ 1284.215129] Bridge firewalling registered
[ 1284.229704] device tap0 entered promiscuous mode
[ 1284.241864] IPv6: ADDRCONF(NETDEV_UP): qemubr0: link is not ready
[ 2126.210933] wls1: AP 34:31:c4:5f:07:d1 changed bandwidth, new config is 2432 MHz, width 2 (2422/0 MHz)
[ 2426.034294] wls1: AP 34:31:c4:5f:07:d1 changed bandwidth, new config is 2432 MHz, width 1 (2432/0 MHz)
[ 2892.936374] kvm: zapping shadow pages for mmio generation wraparound
[ 2911.505834] kvm [958]: vcpu0 disabled perfctr wrmsr: 0xc1 data 0xffff
ip link / addr on host:
# ip addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: wls1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
link/ether 00:21:6a:a9:49:ae brd ff:ff:ff:ff:ff:ff
inet 192.168.178.32/24 brd 192.168.178.255 scope global wls1
valid_lft forever preferred_lft forever
inet6 fe80::2176:234a:73c6:16a7/64 scope link
valid_lft forever preferred_lft forever
3: tap0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop master qemubr0 state DOWN group default qlen 500
link/ether 7a:16:ef:9e:39:78 brd ff:ff:ff:ff:ff:ff
4: qemubr0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default
link/ether 7a:16:ef:9e:39:78 brd ff:ff:ff:ff:ff:ff
# ip link
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: wls1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP mode DORMANT group default qlen 1000
link/ether 00:21:6a:a9:49:ae brd ff:ff:ff:ff:ff:ff
3: tap0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop master qemubr0 state DOWN mode DEFAULT group default qlen 500
link/ether 7a:16:ef:9e:39:78 brd ff:ff:ff:ff:ff:ff
4: qemubr0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN mode DEFAULT group default
link/ether 7a:16:ef:9e:39:78 brd ff:ff:ff:ff:ff:ff
VM ip addr / link
http://oi58.tinypic.com/16kt11k.jpg
VM dmesg (extract), probably not helpful
http://oi59.tinypic.com/2i7l2qv.jpg
I must admit that my theoretical and practical knowledge on networking is quite limited, so this might be trivial. I'd be happy about any hints in the right direction. Thanks
-- mod edit: read the Forum Etiquette and only post thumbnails http://wiki.archlinux.org/index.php/For … s_and_Code and please don't post images of text [jwr] --
Last edited by AndyBrandi (2015-01-01 17:48:08)

You are scratching your right ear with the left hand, so to speak.
Let's say on the host, you have a bridge, br0, with an appropriate IP, serving as a gateway (created with your favorite network manager), and you'd like to start a VM whose virtual drive is arch-x86_64, then this is all you need to do:
$ qemu-system-x86_64 -enable-kvm -drive file=arch-x86_64,if=virtio -net nic,model=virtio -net bridge,br=br0
inside the VM you'll have eth0 (or whatever), and on the host -- tap0 plugged into the bridge. This is all courtesy of /usr/lib/qemu/qemu-bridge-helper which is a suid binary.
Last edited by Leonid.I (2015-01-03 23:24:41)

Similar Messages

  • [solved] problem getting vbox host only networking going on arch host

    New arch user here, been running for 2-3 weeks.  Finally came across something I can't wiki/google my way through, trying to get host only networking going.
    So....  I started by trying the graphical virtualbox manager.  File -> preferences -> network -> add, which gives:
    Failed to create the host-only network interface.
    Callee RC: NS_ERROR_ABORT (0x80004004)
    Tried the following also, with no luck:
    > VBoxManage hostonlyif create
    VBoxManage: error: Code NS_ERROR_ABORT (0x80004004) - Operation aborted (extended info not available)
    Context: "CreateHostOnlyNetworkInterface (hif.asOutParam(), progress.asOutParam())" at line 64 of file VBoxManageHostonly.cpp
    Segmentation fault
    > VBoxManage dhcpserver add --ifname hth0 --ip 10.1.1.1 --netmask 255.255.255.0 --lowerip 10.1.1.10 --upperip 10.1.1.20 --enable
    VBoxManage: error: The host network interface with the given name could not be found
    VBoxManage: error: Details: code NS_ERROR_INVALID_ARG (0x80070057), component Host, interface IHost, callee nsISupports
    Context: "FindHostNetworkInterfaceByName(Bstr(pIfName).mutableRaw(), hif.asOutParam())" at line 225 of file VBoxManageDHCPServer.cpp
    VBoxManage: error: Could not find interface 'hth0'
    > uname -a
    Linux bing 3.1.1-1-ARCH #1 SMP PREEMPT Fri Nov 11 22:28:29 CET 2011 x86_64 AMD E-350 Processor AuthenticAMD GNU/Linux
    > lsmod | grep vbox
    vboxnetflt 17159 0
    vboxdrv 1790690 1 vboxnetflt
    > pacman -Q virtualbox
    virtualbox 4.1.6-3
    I also have extension pack 4.1.6r74713 if that matters.
    edit: code tags
    Last edited by nht (2011-11-19 16:37:49)

    Thank you sir, that's exactly what I needed.
    Now that I look, I see mention of this in the VirtualBox Extras section of the wiki, but not the VirtualBox or Advanced VirtualBox Networking sections.  I have edited the Advanced VirtualBox Networking wiki to add mention of this.
    Last edited by nht (2011-11-19 17:18:28)

  • [SOLVED] Qemu and host-only networking

    Hi,
    I want to setup qemu with one Windows 7 guest. This guest should be able to connect to the hosts samba and postgres server, except external networks such the internet. I've read the archlinux qemu wiki page and it seems i need to use a bridge and a tap device to accomplish this. So far i've did as root:
    brctl addbr br0
    ip tuntap add dev tap0 mode tap user me
    ip link set tap0 up
    brctl addif br0 tap0
    'brctl show' gives
    bridge name bridge id STP enabled interfaces
    br0 8000.16cad3ab6bda no tap0
    When i start the vm as a user i get
    qemu-system-x86_64 -enable-kvm -m 1024 -vga std -device e1000,netdev=tap0,mac=DE:AD:BE:EF:96:32 -netdev tap,id=tap0,script=no,downscript=no hdd1.qcow2
    qemu-system-x86_64: -netdev tap,id=tap0: could not configure /dev/net/tun: Operation not permitted
    qemu-system-x86_64: -netdev tap,id=tap0: Device 'tap' could not be initialized
    Ok. Need to handle some permission issues. If i launch the above command as root, the VM (Windows 7) starts, but i don't have any connection to the host (Windows 7 complains about an unindentified network).
    With the example scripts 'qemu-ifup', 'qemu-ifdown', the ip forwarding and the sudo configuration as described in the QEMU - ArchWiki - Creating bridge manually section, Windows 7 can indeed connect to the host, but also to the internet, what i simply don't want. The reason might sound silly, but everytime a Windows guest tries to connect to the internet, thus trying to obtain an ip from the dhcp server, the host completely looses its connection to the router. It seems my network hardware doesn't like this.
    Anyway, i think i'm only missing one little thing. I would appreciate any help.
    Last edited by ulixes (2014-06-09 20:51:52)

    Thank you for this, I've tried lots of docs&tutorial, finnaly got this and success.
    ulixes wrote:
    Ok, found a solution. It's surprisingly simple. I've discarded the libvirt way, because the official archlinux virt-manager package is pretty unusable and configuring a working vlan for libvirt seems pretty complicated. I still couldn't get a working network device on the guest side.
    For completeness, here is what i've done. I use a tap and a bridge device and dnsmasq. I did not activate ipv4 forwarding like mentioned in the wiki! The following steps need to be done as root.
    First i've created the bridge, set an ip address and started it
    brctl addbr br0
    ip addr add 192.168.179.1/24 broadcast 192.168.179.255 dev br0
    ip link set br0 up
    The subnet should differ from any other device. In my case the only other device eth0 has the ip 192.168.178.xxx.
    Next i've created the tap device for use by qemu respectively the guest
    ip tuntap add dev tap0 mode tap
    ip link set tap0 up promisc on
    I don't know if 'promics' is really necessary, but there's no need to assign an ip to the tap device.
    Now i've connected the tap device to the bridge
    brctl addif br0 tap0
    Until now this was approximately my first try. I've tried to use static ip on the guest side, but had no succeess. The important point was to run dnsmasq on the bridge
    dnsmasq --interface=br0 --bind-interfaces --dhcp-range=192.168.179.10,192.168.179.254
    In effect, i finally got working ip on the guest network devices (this may take some seconds). Pinging the host succeded and neither of my guests (SliTaz Linux, Windows 7) were able to connect to external networks, thus the internet.
    I've started the guests with
    qemu-system-x86_64 -enable-kvm -m 1024 -netdev tap,id=t0,ifname=tap0,script=no,downscript=no -device e1000,netdev=t0,id=nic0 <imagefile>
    In my case, i had to omit the automated exection of scripts. This way i was also able to execute the above qemu command as an ordinary user.
    Just to finalize this description for samba:
    By adding 'br0' to 'interfaces' in smb.conf, guests were able to connect to the host samba service as usual.

  • Virtualbox(PUEL) 3.1.6 Host-Only Adaptor connectivity problems

    Hi there! I'm a new Arch Linux user and i'm LOVING it ... I've hit one problem I can't seem to get Host-Only Adaptor networking working with VirtualBox (PUEL) with any virtual machines e.g. VM's can't communicate to anything Host machine, router etc, I've set static addresses for all my Vitual machines.
    (Host machine)
    /etc/conf.d/bridges
    # Settings for layer-2 bridges
    # For each bridge interface declared in INTERFACES (in rc.conf), declare
    # a bridge_${IF} variable that contains the real ethernet interfaces that
    # should be bridged togeether.
    # Then list the bridge interface name in the BRIDGE_INTERFACES array.
    # example:
    # in /etc/rc.conf:
    # eth0="eth0 up"
    # eth1="eth1 up"
    # br0="br0 192.168.0.2 netmask 255.255.255.0 up"
    # INTERFACES=(lo eth0 eth1 br0)
    # in /etc/conf.d/bridges
    bridge_br0="eth0 vbox0"
    BRIDGE_INTERFACES=(br0)
    #bridge_br0="eth0 eth1"
    #BRIDGE_INTERFACES=(br0)
    (Host Machine)
    /etc/rc.conf
    # /etc/rc.conf - Main Configuration for Arch Linux
    # LOCALIZATION
    # LOCALE: available languages can be listed with the 'locale -a' command
    # HARDWARECLOCK: set to "UTC" or "localtime", any other value will result
    # in the hardware clock being left untouched (useful for virtualization)
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
    # CONSOLEMAP: found in /usr/share/kbd/consoletrans
    # USECOLOR: use ANSI color sequences in startup messages
    LOCALE="en_US.UTF-8"
    HARDWARECLOCK="UTC"
    TIMEZONE="Australia/Melbourne"
    KEYMAP="us"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    # HARDWARE
    # MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
    # MOD_BLACKLIST: Prevent udev from loading these modules
    # MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
    # NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
    MOD_AUTOLOAD="yes"
    #MOD_BLACKLIST=() #deprecated
    MODULES=(!snd-pcm-oss bridge vboxdrv vboxnetflt vboxnetadp)
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="no"
    # NETWORKING
    # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
    HOSTNAME="myhost"
    # Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
    # Interfaces to start at boot-up (in this order)
    # Declare each interface then list in INTERFACES
    # - prefix an entry in INTERFACES with a ! to disable it
    # - no hyphens in your interface names - Bash doesn't like it
    # DHCP: Set your interface to "dhcp" (eth0="dhcp")
    # Wireless: See network profiles below
    eth0="eth0 up"
    br0="dhcp" # Maybe you have some static configuration; change to fit
    INTERFACES=(eth0 br0)
    #Static IP example
    #eth0="eth0 192.168.1.200 netmask 255.255.255.0 broadcast 192.168.1.255"
    # eth0="dhcp"
    #INTERFACES=(eth0)
    gateway="default gw 192.168.1.254"
    # Routes to start at boot-up (in this order)
    # Declare each route then list in ROUTES
    # - prefix an entry in ROUTES with a ! to disable it
    gateway="default gw 192.168.1.254"
    ROUTES=(gateway)
    # Enable these network profiles at boot-up. These are only useful
    # if you happen to need multiple network configurations (ie, laptop users)
    # - set to 'menu' to present a menu during boot-up (dialog package required)
    # - prefix an entry with a ! to disable it
    # Network profiles are found in /etc/network.d
    # This now requires the netcfg package
    #NETWORKS=(main)
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    # - prefix a daemon with a ! to disable it
    # - prefix a daemon with a @ to start it up in the background
    DAEMONS=(syslog-ng !network hal networkmanager openntpd dnsmasq netfs crond sshd alsa dbus gdm lp parport parport_pc cups)
    Guest Machine Slitaz
    /etc/network.conf
    Static ip = 192.168.1.180
    I need to use VirtualBox on an almost daily basis for work... I would highly appreciate you help so thanks in advance!

    Hi, I'm not sure I fully understand your issue.
    Are you telling VirtualBox don't allow you to add a Host-Only Adaptor via main menu File -> Net -> Add button? I once hit this problem and was lost some days because I come from the *buntu-land and all this configuration was nearly automatic there. If this is your problem you should first download and install the rigth AUR package, tha one working for me is virtualbox_bin now at latest version 3.1.8-1, you will need to install also virtualbox-additions. After you installed VirtualBox follow the instructions provided by packagers:
    IMPORTANT NOTES:
    - Run "vbox_build_module" as root every time your kernel is upgraded, to
      compile the module for the new kernel version.
    - Add your user to the vboxusers group:
         gpasswd -a USERNAME vboxusers
    - Add "vboxdrv" to the MODULES array in your "/etc/rc.conf"
    - Add "vboxnetflt" to MODULES if you want Host Interface networking.
    - Add "vboxnetadp" to MODULES if you want Host-Only networking.
    - If USB does not work for you out-of-the-box, add the following line
      to "/etc/fstab":
         none /proc/bus/usb usbfs auto,busgid=108,busmode=0775,devgid=108,devmode=0664 0 0
    Once you do that you'll be smoooooth 8-D

  • Internet access to the guest system for Host-Only configuration

    Hello,
    I have a windows host linux guest vBox environment and it's configured as host-only. How can I enable internet access within the guest? I am towards the end of a RAC installation and upon running buildcluster.sh, it says the recommended RPM "oracle-validated" not installed or has unsatisfied dependencies. It seems i have quite a few RPMs need to download and thus prefer to be able to connect to the internet within the guest so i can do it from the Oracle yum server.
    Thanks,
    Harry

    Hi,
    this won't work so easiliy with a "Host Only" network.
    You either need a bridges network or a NAT network.
    Easiest thing probably will be to add another interface (network) to the VM and assigned it as bridged.
    Then download/update oracle-validated and remove the interface again.
    This way, you don't need to change anything on the server.
    Regards
    Sebastian

  • Cannot open videos on shared photostream using apple devices

    All members  of our shared photostream are unable to open posted videos. Pictures are present.  This affects only those using Apple devices, i.e. iPhones & iPads all models.  People who are viewing the photostream on a Windows device are able to see the videos.

    Just started having this issue as well!
    I can view the shared videos in iPhoto via my iMac but not a single one of my iOS devices will play the videos. 

  • Time Capsule only works for one device at a time, how to make it capable to be used for multiple devices at times

    Time Capsule only works for one device at a time, how to make it capable to be used for multiple devices at times.
    Please help to set it up, thanks in advance

    You need to give more info..
    Firstly only works for what.. networking.. backup.. wireless. You need more nouns.. more adjectives... describe what you want and what fails.. then we can figure out why.
    Most likely you have bridged it when it should be in router mode..
    Most likely you are using Lion or ML which has the airport utility bridge the TC by default.
    Change it to working as a router. That might help.
    If you press reset button it will default back to router btw.
    If you are on Lion.. use a real utility. http://support.apple.com/kb/DL1547

  • Using a non-Apple network attached storage device in lieu of Time Capsule

    Can anyone suggest the steps one would need to take to have a non-Apple network attached storage device (HPMediavault) recognised by the Airport Utility so that it may be employed for file storage via Time Machine in lieu of a Time Capsule?

    Sorry, but TM will not work with third-party NAS - only Time Capsule.
    Requirements to use Time Machine
    Time Machine is only available with Leopard (10.5.x)
    1. External FireWire or USB 2.0 drive
    2. Time Capsule
    3. Drive shared by a Mac running 10.5 or later using File Sharing
    4. Drive shared by a Mac running 10.5 Server
    5. SAN volume managed by Apple's Xsan file system
    A TM drive must be partitioned with either APM (PPC) or GUID (Intel) and formatted Mac OS Extended (Journaled.)
    An Airport Extreme Base Station with a USB drive connected to it can be used with TM but it is not supported by Apple.

  • I can send email but not receive on my iphone 3GS. Emails to my .me address are OK but not emails to the address hosted by Network Solutions. NS have checked my settings twice. I am using IMAP. Is this a problem with iCloud?

    I use IMAP email hosted by Network Solutions for my main email address. I can send and receive this OK in my Mac Mail on my MAC book and also on webmail. However my iphone doesn't receive these emails but it can send. I have checked settings on my iphone twice with Network Solutions but no luck. Emails addressed to my .me address are received OK. I have a suspicion this problem started when I signed up to icloud.
    my ISP is BTconnect
    Any ideas?

    Useful suggestions. In fact I had already deleted and re-entered the account details a few days ago without apparent success. The error message was along the lines of "cannot access the server".
    Anyway about an hour after your message, my emails started coming through after a 6 month gap!  - makes me think someone at Network Solutions monitors these discussions.
    Many thanks

  • Microsoft Windows Network: The local device name is already in use.

    I posted in : http://answers.microsoft.com/en-us/windows/forum/windows_7-networking/disconnected-network-drive-error-as-follows-an/9a877c38-5e86-4c34-84c2-427a965577c6?page=2
    Error:
    "An error occurred while reconnecting drive letter to \\network server\share folder.
    Microsoft Windows Network: The local device name is already in use.
    This connection has not been restored."
    1) A workstation is running Windows 7
    2) The user has a drive letter mapped to a UNC
    3) The connection is interrupted at some point and then restored
    4) Upon attempting to access the mapped network drive, the user gets the error about the letter being
    already in use.
    Extremely disappointed that some of the posts marked as answers were obviously not, shows how poor the moderators here are.
    My latest results clearly point to a Windows 7 client problem:
    I received the error.
    Had run nslookup so had a prompt open.
    ran dir z:    worked. went to Windows Explorer, same error.
    ran dir z:\sharename    worked. went to Windows Explorer, same error.
    copy con z: test.txt then type test.txt; could create and retrieve file. Went and clicked on mapped drive in Windows explorer and received same error.
    Obviously(?) not a Server or Networking problem. Ran Malwarebytes from bootable CD (client doesn't believe in AV). Didn't happen with USB flash drive.
    Any other ideas?
    I already have tried:
    support.microsoft.com/kb/317021
    http://support.microsoft.com/kb/303339
    ftp://ftp.microsoft.com/misc1/BUSSYS/WINNT/KB/Q194/8/29.TXT
    http://support.microsoft.com/kb/273151 Exchange issue
    http://support.microsoft.com/kb/2663418   hotfix for win7
    http://social.technet.microsoft.com/Forums/en-US/w7itpronetworking/thread/78276f1d-f7f9-416b-b903-
    b9a18ecba67b/
    http://support.microsoft.com/kb/297684
    Ran  MicrosoftFixit50494.msi
    net use z: \\SERVER\ShareFiles /persistent:yes
    http://support.microsoft.com/kb/2663418
    http://support.microsoft.com/kb/297684#LetMeFixItMyselfAlways
    http://support.microsoft.com/gp/gp_fixit_windows/en-us
    http://support.microsoft.com/mats/windows_battery_power_settings
    http://support.microsoft.com/kb/979470/en-us ???
    http://support.microsoft.com/kb/947235/en-us
    http://msdn.microsoft.com/en-us/library/cc232765.aspx
    http://support.microsoft.com/kb/942817
    Q939820? server 2003 sp3 Fix226580  341940_ENU_i386_zip.exe
    http://support.microsoft.com/kb/983620
    http://support.microsoft.com/kb/297684
    net config server /autodisconnect:-1
    KB Article Number(s): 2663418 Hotfix
    http://support.microsoft.com/kb/983620
    http://answers.microsoft.com/en-us/feed/t/9a877c38-5e86-4c34-84c2-427a965577c6
    http://answers.microsoft.com/en-us/feed/t/9a877c38-5e86-4c34-84c2-427a965577c6
    net use z: \\SERVER\1_CADFiles /persistent:yes SBS2011 Server with current service packs
    Win7 Pro users with current Windows Update status
    http://support.microsoft.com/kb/2663418
    http://support.microsoft.com/kb/297684#LetMeFixItMyselfAlways
    http://support.microsoft.com/gp/gp_fixit_windows/en-us
    http://support.microsoft.com/mats/windows_battery_power_settings
    http://support.microsoft.com/kb/979470/en-us ???
    http://support.microsoft.com/kb/947235/en-us
    http://msdn.microsoft.com/en-us/library/cc232765.aspx
    http://support.microsoft.com/kb/942817
    netsh winsock reset catalog
    netsh int ip reset reset.log
    Q811259
    Q299357
    Q937624
    secpol.msc >> Lanman authentication level  "send LM and NTLM"
    net config server /autodisconnect:-1
    changed server video to "standard vga"
    disabled power save for NIC
    Cannot disable Intell Raid software
    http://technet.microsoft.com/en-us/library/cc780360%28v=WS.10%29.aspx   restart
    http://technet.microsoft.com/en-us/library/bb726989.aspx browse list
    Q138365
    net config server /autodisconnect:-1
    two additional registry keys are added:
    anndelta: REG_DWORD: 0xbb8
    announce: REG_DWORD: 0xf0
    netsh winsock reset
    netsh interface ipv4 reset
    netsh interface ipv6 reset
    ipconfig /flushdns  
    shutdown /r
    sfc /scannow
    http://support.microsoft.com/kb/929833
     http://social.answers.microsoft.com/Forums/en-US/w7network/thread/306dd446-7630-4d5b-8aa0-
    40fb839b293a     dns issue
    http://answers.microsoft.com/en-us/windows/forum/windows_7-networking/i-have-this-problem-on-three-
    win7-x64-systems-two/d44ed544-65f5-43a7-9e17-d2d10085c765?page=2
    Leftover Homegroup components or Firewall?
    disable DNS Client = dnscache
    http://answers.microsoft.com/en-us/windows/forum/windows_7-networking/service-control-manager-reports-
    that-a-timeout/e2e76ae5-ed09-4685-af86-5f8c2cd120bf     Norton Internet Security uninstall issues
    http://answers.microsoft.com/en-us/windows/forum/windows_7-networking/windows-7-no-dns-or-no-network
    -after-resume-wake/c1253ab0-4793-449e-8975-a900ce7dec4f
    NSLOOKUP
    KB Article Number(s): 983620 Hotfix

    This is usually because the drive letter assigned to the network share is taken by something else. Maybe, by a removable drive.
    Moderators and other answerers do their best to help specific cases, but everyone has their own situation.  Apply common sense to the replies you find in the forums.
    When you typed dir z:  - is Z: the drive letter you wanted for this share, or it was automatically assigned?
    -- pa
    Alternatively you could try using common sense when you post, as well as taking the time to read the entire issue post so that you can avoid showing both your ignorance and arrogance (arrogance without any competency to back it I might add).
    Suggesting that it might be "another drive" that took over the mapping shows your lack of reading comprehension and is unhelpful.   Please take the time to, once again, read first.
    Lastly moderators here generally show little technical skill beyond entering search words into a knowledge-base of articles and then applying the results incorrectly further exacerbating the situation for the customer.

  • Is ti possible to label a set of tape with a specific media family. For eg. I want media family'xyz' to use tape only from location '1-6'. Is this possible in OSB

    -Is it possible to label a set of tape with a specific media family. For eg. I want mediafamily 'abc' to use tape only from location '1-6' and media family 'xyz' to use tapes from location '7-12'. Is this possible in OSB.
    -If not through media family, is there any other way to label tapes with customized lablels.
    -Is it possible for a backup job to use the tapes from a set of tapes and backup should fail if the tapes are not found from the set. Even if the library has empty tapes.
    I have read about Volume set, but I believe its something that is created automatically when the backup spans to the next volume after current volume is full.

    -Is it possible to label a set of tape with a specific media family. For eg. I want mediafamily 'abc' to use tape only from location '1-6' and media family 'xyz' to use tapes from location '7-12'. Is this possible in OSB.
    -If not through media family, is there any other way to label tapes with customized lablels.
    -Is it possible for a backup job to use the tapes from a set of tapes and backup should fail if the tapes are not found from the set. Even if the library has empty tapes.
    I have read about Volume set, but I believe its something that is created automatically when the backup spans to the next volume after current volume is full.

  • Reoccurring warning, literally every 20 seconds: "This cable or accessory is not certified and may not work reliably with this iPhone." I am only using Apple devices. How can I eliminate the warning?

    Please help me eliminate this repeating warning message on my iPhone 5. It occurs several times a minute. I am only using Apple devices, so the warning is in error.  "This cable or accessory is not certified and may not work reliably with this iPhone."

    The cable may be damaged. Try another cable.
    Make sure it properly connected at both ends.

  • Extend Wireless Network using a Telstra technicolor Gateway wireless Router to Airpot extreme but Airport will only except join not extend and I can not get a network on the Airpor Extreme ethernet ports but can ping Airport extreme from Technicolor Rout/

    Extend Wireless Network using a Telstra technicolor Gateway wireless Router to Airpot extreme but Airport will only except "join a wireless network (which it does) not "extend a wireless network" (Led turns yellow and I can not get a network working on the Airpor Extreme ethernet ports but can ping Airport extreme from Technicolor Router.
    Airport gets it address DHCP.

    Funny how I can ping the Extreme but the Hard Ethernet ports dont seem to work correctly.
    When the AirPort Extreme is configured to "Join" a wireless network, the Ethernet ports are not enabled.
    Oddly, the AirPort Express has a special feature that will allow it to to "Join" virtually any wireless network.....and the Ethernet port can be enabled. So, an Express would work for your purpose to provide an Ethernet connection to the media player. This assumes that the Express is located where it can receive a strong wireless signal from your main router.
    Note that the Express will not provide any additional wireless coverage when it "Joins".

  • When extending my wifi network using an Extreme as my main and an Express to extend.. does it help to make sure that both devices are on the same channel or does it even make a difference if they are on different channels?

    when extending my wifi network using an Extreme as my main and an Express to extend.. does it help to make sure that both devices are on the same channel or does it even make a difference if they are on different channels?

    Have you even tried the process in which i have described in my previous post?
    Yes, many times.  If you are setup to "extend a wireless network, the screen looks like this:
    If you click the Wireless Options button, the screen looks like this:
    Where is it on this screen that you see a setting to adjust the channel?  It sounds like you are confusing "create a wireless network"....which does allow you to adjust channels.....with "exend a wireless network" which does not.
    Normally, when you extend a wireless network, AirPort Utility used to always assign the same channel to the extending device. That is no longer the case. It might be the same, or it might be different.  You have no control over this, so you have to accept what AirPort Utility thinks is best.

  • Email not pushing using wifi only network

    My email is only pushing using the network and not wifi, help please

        jal88,
    Thank you for the details, this is odd but we want to get to the bottom of this. Have you tried resetting the wi-fi router? Since all the phones have this problem we want to start there. What is the domain of the email addresses you're trying to use with the phones?
    AdaS_VZW
    Follow us on Twitter at @VZWSupport 

Maybe you are looking for

  • HT1206 Can I sync my wife's new Iphone with "my" Itunes or should I just set up a new Itunes account on her computer???

    I just tried to sync my wife's new Iphone with "my" ITunes.  Bad mistake!!  I guess "my" itunes thought her phone was mine and "somehow" went into "restore" mode and basically turned "her" phone into mine - ie. contacts, photos, etc. Can your have tw

  • How can I read the executed processes std out into my program?

    In MyProgram.c I am doing  CreateProcess("GetData.exe" ....);. GetData when run on a command line prints about 100 lines of data to stdout.  When I run my MyPragrame.exe I want that data not going to stdout instead I want it to be saved say in a buff

  • Standard of services

    Poor standards of service provided by 02 customer services team. U treat customers like there nothing yet they are the 1s that are making the company a success especially those who have been with u for years such as my self. Been with u 2 weeks after

  • Business area ovewrite

    i have business area A i took backup by using exoprt in file menu now i do changes in it. i also generate repoprts and save it in database now i want to replace the A with exisising one now in import i choose file name and i select option rename the

  • Error in sys_panama.og un Sun Solaris

    Error is no such class type PGRP see part of dump: Any ideas? Thanx, Bas. (JspApplication.java) at oracle.jsp.JspServlet.doDispatch(JspServlet.j ava) at oracle.jsp.JspServlet.internalService(Compile d Code) at oracle.jsp.JspServlet.service(JspServlet