Ubuntu Networking :: Possible To Forward X11 From Windows To Machine?

Jan 28, 2010

Is it possible to forward X11 from Windows to a linux machine? Such as, running MS office or other software that runs on windows to your Linux desktop?

View 5 Replies


ADVERTISEMENT

Networking :: Forward One IP Address To A Machine To Get Rid Of Nat

Apr 12, 2010

My ISP can give me up to 5 ip addresses. Is it possible to "forward" one of them to a machine to get rid of nat? I was thinking of "forwarding" one public ip to my machine and let the rest of the network share one ip using nat.

View 7 Replies View Related

Networking :: Forward SMTP Packets From Web Server To Another Machine?

Mar 8, 2010

I've a webserver at 10.10.0.55. Above in the hierarchy are managed network cisco switch / router and ASA firewall (the usual stuff). I also have a mail server at 10.10.0.200. I was told by the network admin that he can't forward port 80 to webserver and port 25 to mail server. Basically he said that it's a one-to-one (external.ip-to-internal.ip) mapping and all traffic, no matter what port it's destined for must go to 10.10.0.55. So, I turn to the wonder that linux is. The webserver is running Centos 5.4. Currently, all packets on port 25 are coming to the webserver. I want to forward all these packets to the email server. Note: the webserver only has one interface: eth0. I turned to web for help and did this in iptables:

Code:

$IPT -A FORWARD -p tcp -s 0/0 -i eth0 -o eth0 -d 10.10.0.200 --dport 25 -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT

It didn't work. I am assuming that since I only have one interface, a simple rule to the filter table and forward chain will not work.So i use the NAT table and try the following:

Code:

echo 1 > /proc/sys/net/ipv4/ip_forward
$IPT -t nat -A PREROUTING -p tcp -i eth0 --dport 25 -j LOG --log-prefix PortForward: --log-level 7
$IPT -t nat -A PREROUTING -p tcp -i eth0 -d 68.***.26.*** --dport 25 -m state --state NEW,ESTABLISHED,RELATED -j DNAT --to-destination

[code]....

First of all, since there is no service/daemon listening on port 25 on the webserver, is it even going to work? Isn't the webserver simply going to discard packets on port 25? I am assuming that packets go through the iptables first, and so iptables should route the packets to the email server, where there is postfix listening on port 25. Am i right? Also, as you can see in the code above, all packets coming on port 25 on the webserver should be logged. But they aren't. In order to troubleshoot, I'd like to at least know that packets are coming into the iptables. But since it's not logging, I can't find out what's wrong.

View 7 Replies View Related

Ubuntu Networking :: Access Machine Via Windows Machine - Samba Password Reset?

Feb 13, 2011

I try to access my ubuntu machine via my Windows Machine (Samba Server on Ubuntu Machine). Anytime I try to access the machine it asks me for my password...I enter it but it says it is invalid....is there anyway to reset it? I have already tried to remove and purge everything Samba related and then tried reinstalling, but that still didn't do anything

View 2 Replies View Related

Ubuntu Networking :: Way To Share Folder From Machine To Windows Machine

Aug 28, 2010

I am trying to establish the easiest way to share a folder from an Ubuntu machine to a Windows machine.In the past I have added things to smb.conf and that has all worked fine but what I am trying to do is to figure out what the "new user" way of doing this is so that when I am helping other people I know I am getting them to do the simplest thing.I completely removed samba and reinstalled it so that I didn't have any configuration. Right clicked on a folder and selected "Sharing Options" ticked the "Share this folder box" gave it a name and a comment and ticked the other two boxes.

When I went to the windows laptop then it kept asking for a username/password and nothing worked.Back on the ubuntu machine I did sudo smbpasswd -a [username] and created a blank password. Now from the windows machine I can access the shared folder.Is the smbpasswd step still required? It's very confusing for a new user as there is no suggestion that anything other than right clicking on the folder and choosing the options you want would be required. Is it something to do with the fact that this is an ubuntu machine that has gradually been upgraded through versions and this problem wouldn't have been there from a new install?

View 3 Replies View Related

Networking :: Access A Windows Server 2000 Machine Using A Machine Via KDE?

Apr 9, 2010

I need to access a Windows Server 2000 machine using a Linux machine via KDE, but that will migrate to Gnome. The Linux user to connect to Windows machine, you should open an application 'XYZ' automatically, and only this, denying any unauthorized access. When you close the application 'XYZ' communications (RDP?) Should be terminated. Do I need a log of accesses and possible attempts to circumvent the system and access other application.

View 7 Replies View Related

Networking :: Transfer Files From A Machine To A Windows Machine Which Are Not In The Same Network?

Jul 6, 2010

I had run one script in unix machine and want to copy the results to a windows machineBoth the machines are on different networksIn linux machine trying to do the ftp to the windows machine its giving connection refused. How to chech whether ftp is running on that linux machine or not?Also tried scp and ssh , both are failing

View 6 Replies View Related

Networking :: Can't Ping CentOS 5.3 Machine To XP SP2 Windows Machine

Oct 31, 2009

I have two machines, one has XP service pack2, second one has CentOS 5.3 (Linux), they are connected through crossover cable. I have configured everything fine but don't know why till now can't ping!

A. Windows machine settings as follows:

IP Address: 192.168.1.3
Subnet Mask: 255.255.255.0
Default Gatway: 192.168.1.1
+ Firewall is turned OFF.

B. For Linux machine, I will list everything stored in network files, logged as [root@localhost ~]# :

1. /etc/sysconfig/network:

ifconfig eth0 192.168.1.4 netmask 255.255.255.0 up
route add -net 192.168.1.0 netmask 255.255.255.0 eth0
route add default gw 192.168.1.1 eth0
NETWORKING = yes
NETWORKING_IPV6=no
HOSTNAME=localhost.localdomain

2. /etc/sysconfig/network-scripts/ifcfg-eth0

DEVICE="eth0"
IPADDR="192.168.1.4"
NETMASK="255.255.255.0"
ONBOOT="yes"
BOOTPROTO="yes"

3. /etc/resolv.conf

nameserver 192.168.1.4
search locadomain

4. I restarted network service using this command:

/etc/init.d/network start

everything is fine. When checking using ifconfig command. I get the following:

eth0 Link encap: Ethernet HWaddr 00:08:0D:EE:19:66
inet addr:192.168.1.4 Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr:........

[code]....

I mean I assigned the IP: 192.168.1.4 to Linux machine (Eth0). I did everything above and can't ping till now, when pinging from windows or Linux I get a message "destination host unreachable" restarted Linux many times but same result. NETWORK CABLE is working fine I tested it.

View 14 Replies View Related

Ubuntu :: X11 Forwarding Via Ssh Connection - Doesn't Forward To Display To Local Machine

Jul 30, 2010

I am trying to run xeyes on a remote machine via ssh connection. Both my local and remote machines are Ubuntu 10.04. I connect to remote server via ssh -X and It does not forward to display to my local machine...

Code:
root@goliath:/opt/install/bits# ssh -X -l root duke
root@duke's password:
Linux duke 2.6.32-21-generic #32-Ubuntu SMP Fri Apr 16 08:10:02 UTC 2010 i686 GNU/Linux
Ubuntu 10.04 LTS
[Code]....

View 6 Replies View Related

Fedora Servers :: Port Forward On The Fly Or At Startup With Virt Machine Manager And Kvm-qemu?

Jan 6, 2010

I'm running some vm's in FC12 with kvm-qemu and using virt machine manager. I'd like to have some ports automatically forward on startup and be able to add redirections on the fly. Redirection on the fly is talked about here, but I am getting lost on what should be basic instructions.[URL]

As far as startup, In the past I just ran qemu from the cli and manually specified redirection with redir. I can't figure out how to do it with The virt machine manager which I am using to start my VM's now. I do not want the guests to see the host. From cli startup without virt machine manager, it looked like this: qemu -m 256 -hda vm.img -redir tcp:5555::80 -redir tcp:5556::445 &

View 2 Replies View Related

Ubuntu Networking :: Connect To A Windows Machine?

Jul 25, 2010

I'm using Ubuntu 10.04 LTS. How can I connect to a Windows machine? I'm trying to connect to a VirtualBox machine with Windows XP on it. I can connect from the VirtualBox to Ubuntu. But, can't find a way to do it from Ubuntu.

View 8 Replies View Related

Ubuntu Networking :: Cannot Access Windows 7 Machine

Jan 11, 2011

Just installed Ubuntu the newest release on my laptop . Im dual booting on my laptop. Vista or Ubuntu. I gotta say I love Ubuntu more than vista. I would much rather use ubuntu. My question is I cannot for the life of me connect to my main PC running Windows 7. Reason I want to do this is my PC running windows 7 has all my music which is rather large over 100gigs worth. Looks like it recognizes my PC but I cannot access anything.

Now In windows 7 I have disabled password and made it pretty easy to access files on there. When I boot into vista on my laptop no problem at all getting onto the network to access my main Windows 7 Pc. Any Ideas why Ubuntu can't get into my Windows 7 pc Through my network. Would love to do this that way I don't ever have to boot into vista. Ubuntu is great otherwise.

View 1 Replies View Related

Ubuntu Networking :: Connect To A Windows Machine Using 10.10?

Mar 25, 2011

I am used to using Ubuntu Desktop edition (Lucid Lynx to be exact), so I downloaded Ubuntu 10.10 Netbook edition for my little Acer Aspire One. One problem though. The places menu isn't there anymore.

How do I connect to a windows machine share? I tried searching the forums, but they all mention using Places > Connect To Server.

View 1 Replies View Related

Ubuntu Networking :: Windows 7 Machine Can't See Computer / Solution For This?

Jul 5, 2010

Windows 7 computer can't see ubuntu 10.04 computer. Ubuntu machine can see and access rest of windows network including a linux enabled PVR. Tried various things to no avail.When setting up for shared folders I got a message that I needed to install shared services. I did this but I only have one share through option: Unix networks (NFS). The samba option, which I should be using is not available. I tried to allow "Share files over the network" but had to install some extra service. While "share files over the network" can and has been enabled, accessing the windows network has become painfully slow and my windows 7 machine still can't see the linux box

View 1 Replies View Related

Ubuntu Networking :: 10.04 - Machine Does Not Appear At All In Windows Network/workgroup

Aug 23, 2010

`I'm on 10.04 trying to access shares on a windows machine. The machine does not appear at all in windows network/workgroup. I can see these shares when I'm on my windows partition so I know the problem isn't with the network.

Code:

sudo aptitude install apache2.2-bin apache2.2-common libapache2-mod-dnssd

View 1 Replies View Related

Ubuntu Networking :: See Files In U10.04 Machine Through Windows Vista?

Nov 10, 2010

I've been wondering how to see files stored in a ubuntu 10.04 machine while working in a windows vista one in a local network. the most I have gotten is to connect the vista machine to the ubuntu network but i have to copy the files to the windows computer to watch them in that computer.

View 1 Replies View Related

Ubuntu Networking :: Send Messages To Windows Xp Machine?

Jan 11, 2011

Is there a way to send messages from Ubuntu to windows xp computer, like NET SEND, in Windows network enviroment?

View 1 Replies View Related

Networking :: Ubuntu Won't Let My Windows Machine Into Shared Folders / Fix It?

Apr 13, 2011

I configured Samba so that this laptop running Maverick would show up on the network so I could share files between the two. When I view the network on the laptop the windows shares show up, and I can access them; but when I view the network on Windows is when the problems start.

I view the network in Windows and this laptop shows up, but every time I try to open the Public folder (only folder shared) it won't let me in. I get some sort of Windows error message about being unable to access the folder and how I might not have permission to access it, and then at the very bottom it says something like 'file path not found'.

I tried to change the permissions in the properties for my public folder but I every time I tried to change the settings in the access box it would reset it back to blank (-) immediately after I changed it.

I'm not sure what the issue could be. Prior to purchasing this new laptop I was running Karmic on my old laptop and the networking between the two machines worked flawlessly. I'm hoping someone on the forum can help me with this problem.

View 9 Replies View Related

Ubuntu Networking :: Obtain Write Access To A Windows Machine?

Apr 26, 2010

For some time now, I have been backing up a windows box (data files only) to a ubuntu machine using the following:

mount -t cifs -o user=xxx,password=xxx //windowsshare/ /mnt/

For the first time I needed to restore some files and found I did not have the correct rights to write to the windows machine.

I had already wasted a whole day trying to map the ubuntu machine from windows and failed so this is not an option.

I have tried adding write rights to several accounts on the windows machine, also tried adding write rights to "everyone", checked both the share permissions, as well as the folder permissions.

I read about chmod, and tried to use the command gksudo to do something but this fails with DISPLAY error. Tried several things to fix this which didn't work and I was just going off on a tangent.

In the end I used a CD ROM to copy the files from one machine to another.

So for next time I need to restore a file, how can I give myself rights to do so?

View 4 Replies View Related

Ubuntu Networking :: Samba - Share Files From Windows Machine

Jun 6, 2010

I am trying to see share files on my windows machine to my linux machine. I would like an answer to how to fix the problem. This is where i am at i am using my own network to learn who to use nmap properly. I ping my whole network with nmap -sS -O. Then i used nmblookup -a which gave me the infromation i needed. Then i run smbclient -L computername -I ip address -N

This will not show me the windows os this only show me my laptop. What can i change for this to show me the other computer on this network. The port i am wanting is open. I want to be able to mount the share files and move them to my computer i am going to use the commands put and get to move the files when i am able to get to the smb: >

[Code]...

View 6 Replies View Related

Networking :: Can't Access Ubuntu Share From Windows 7 Machine / Resolve It?

Oct 8, 2010

I am running Ubuntu 9.10 on my desktop right now. I have an external western digital terabyte drive plugged into it. I am able to see it and view it fine. Let's work with my music folder for example. I want to be able to access this music from my Windows 7 laptop so that I may add it to my itunes. However, when I enter the \servershare from the windows 7 laptop it says that the "server" is found but the "share" seems to be invalid. I've checked this 20 times and setting the share name to "music". I've rebooted 2 times on each computer yet to no avail. If I make a share on the Ubuntu desktop I can access it from the laptop. So it seems like it just gets lost when looking inside the external. This was just working last week, then I had to blow away they win 7 lappy and now it just won't work!

View 2 Replies View Related

Ubuntu Networking :: Accessing Windows Machine And Vice Versa?

Oct 11, 2010

I had a look through a tutorial video showing how to set up Samba, and the end result was the only shared file/folder showed up on Windows. I want a direct access to all the files and folders like you can do from Windows to Windows, by signing in the user account from another system. And likewise I want access to all Ubuntu files and folders of a user account through Windows.

how if it's possible with or without Samba.

View 9 Replies View Related

Ubuntu Networking :: Set A Static IP Address - See The Lubuntu Box From A Windows Machine?

Jan 11, 2011

#1: Where can I assign a static IP address on my lubuntu box?

#2: Also, is it possible to see the lubuntu box from a Windows machine? If so, how does that work?

View 3 Replies View Related

Networking :: Share Files Between Windows XP Machine And Ubuntu Server

Dec 9, 2010

I am trying to share files between my Windows XP machine and ubuntu server. I set up and configured samba following the instructions in the Online Ubuntu Server Guide. [URL] This is the abbreviated version of my smb.conf file here.

[global]
workgroup = HOME
server string = %h server
interfaces = 127.0.0.0/8, 192.168.1.101/24
# map to guest = Bad User

[code]....

View 15 Replies View Related

Fedora Networking :: Cannot Connect To Windows Machine

Sep 23, 2009

I installed samba and samba-client (sudo yum install samba samba-client) but I still cannot connect to this Windows machine.I installed samba, started the samba services (although that may only by necessary to connect into Fedora?), and even restarted the computer and I still cannot do this, I have been googling like crazy and only se articles on how to make Fedora a samba server...

View 3 Replies View Related

Networking :: Connect System And Windows Machine Using Ssh?

Feb 10, 2010

I have two machines in different location, lets say machine A and machine B.

Machine A:
- Linux Red Hat OS.
- Has internet connection (no proxy).
- Has public IP.

Machine B:
- Windows XP OS.
- Has internet connection (with HTTP proxy).
- Has connection to machine C and machine D. Machine C and D don't have internet connection, but machine B can connect to those machines because machine B, C, and D are located in the same network.

I need to connect machine C and D via machine A. I heard it can be done using ssh between A and B, but I don't know the details.

View 7 Replies View Related

Ubuntu Networking :: Unable To Access Samba Share From Windows Machine?

Jul 15, 2011

I am unable to access samba share from my windows machine. I am getting the following error

View 9 Replies View Related

Fedora Networking :: Access Windows Share From Machine

Nov 2, 2009

he moved in a new place and there is a huge share on the network machine which runs windows... however he has fedora 10 installed on a desktop pc with a big screen and asked me to configure it so it can access the share... i have almost no experience with fedora and i've been trying to do this for two days now... i installed the samba package, but now what? how to do this because the exact commands are unknown to me... i have the root password and everything else on the network... so i just need to know what ot write in order to be able to mount all the TBs of information on the server...

View 4 Replies View Related

Networking :: Join Ad With Samba, Preperation On The Windows Machine?

Jul 6, 2011

but is there any thing i need to make sure on the domain controller for me to be able to join the domain with a linux machine alright?

View 2 Replies View Related

Ubuntu :: Numbers To Put In Linux Machine Can Connect / Print To Windows Machine?

Apr 16, 2011

I remember it being really easy to add a printer attached to another computer using Ubuntu, but I don't remember exactly what made it so easy. All I know is that now that I have switched to Kubuntu the process has become much harder because now I have to find out some special locations, numbers etc. for it to connect to the printer. It's connected to a Windows XP machine on the other side of the house.
It says alot about 'contacting the network administrator' if I am unsure about what to put in. But I am more or less the network administrator. how to find out what numbers to put in so that my Linux machine can connect and print to the Windows machine? Or maybe someone knows a few commands to share? I go to Applications > Settings > System settings, Printer configuration, New Printer, New Network printer, and then there are a few options but I don't know which one to choose. Windows Printer via Samba, I guess? Then in the box that says smb://[enter stuff here] I need to put in info but I don't know how to find that info.

View 5 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved