/ Published in: Bash
                    
                                        
If Ubuntu Server fails to resolve hostnames or find a network connection via Parallels 3 bridged networking, it may be attempting to use the wrong network interface.
                
                            
                                Expand |
                                Embed | Plain Text
                            
                        
                        Copy this code and paste it in your HTML
# what interfaces are supposed to be used?
cat /etc/network/interfaces
# what interfaces are actually in use?
ifconfig
# mine showed only 'lo' (local loopback) in use,
# but eth0 was supposed to auto-init too.
# so let's see what's happening when eth0 is attempted
sudo ifdown -a
sudo ifup -a
# voila! there is no such interface
# edit the /etc/network/interfaces references to 'eth0' to 'eth1'
# then re-init...
sudo ifdown -a
sudo ifup -a
# re-confirm the new interface is now in use
ifconfig
Comments
 Subscribe to comments
                    Subscribe to comments
                
                