how to solve NT_STATUS_HOST_UNREACHABLE in CentOS when connecting to (windows) file server via SAMBACreate SAMBA node trust relationship to Windows 2003 PDC serverSamba between Ubuntu server 10.10 and Windows Vista, Windows 7How can I clear the “authentication cache” in Windows 7 to a password protected samba share?How to prevent nginx from locking files on mounted samba partition in Centos 6samba to ask username password before listing shared foldersCentOS 7 firewall-cmd not foundHow to share apache /var/www using samba server in ubuntuCTDB failover and samba/openldap authentication failsSamba 4.9.0 ./configure lmdb error

Externally monitoring CPU/SSD activity without software access

What is this opening/position called, and what is white’s best move?

Grammar Question Regarding "Are the" or "Is the" When Referring to Something that May or May not be Plural

How to illustrate the Mean Value theorem?

Why are C64 games inconsistent with which joystick port they use?

Construct a word ladder

A Riley Respite

Alignment: "Breaking out" of environment (enumerate / minipage)

Why does this if-statement combining assignment and an equality check return true?

Is the derivative with respect to a fermion field Grassmann-odd?

number headings

What are the real benefits of using Salesforce DX?

Where's this lookout in Nova Scotia?

Should I disclose a colleague's illness (that I should not know) when others badmouth him

Could a 19.25mm revolver actually exist?

How should I introduce map drawing to my players?

How do I partition a matrx into blocks and replace zeros with dots?

What was the idiom for something that we take without a doubt?

Why aren't space telescopes put in GEO?

Is the taxi route omitted in low visibility (LVP)?

What to do when you've set the wrong ISO for your film?

How to use libraries with delays inside within a time critical STM32 HAL application?

Employer demanding to see degree after poor code review

How strong are Wi-Fi signals?



how to solve NT_STATUS_HOST_UNREACHABLE in CentOS when connecting to (windows) file server via SAMBA


Create SAMBA node trust relationship to Windows 2003 PDC serverSamba between Ubuntu server 10.10 and Windows Vista, Windows 7How can I clear the “authentication cache” in Windows 7 to a password protected samba share?How to prevent nginx from locking files on mounted samba partition in Centos 6samba to ask username password before listing shared foldersCentOS 7 firewall-cmd not foundHow to share apache /var/www using samba server in ubuntuCTDB failover and samba/openldap authentication failsSamba 4.9.0 ./configure lmdb error






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I am using CentOS and I need to connect to a file server running on windows. My friend told me that I need to install SAMBA to be able to do that. and so I installed samba and when I try to check if the installation is successful, this command




smbclient //[hostname]/[sharename] -U [username]




gave me this




timeout connecting to XXX.XXX.XXX.XXX:XXX
Error Connecting to XXX.XXX.XXX.XXX (No route to host)
Connection to XXX.XXX.XXX.XXX failed (Error NT_STATUS_HOST_UNREACHABLE)




How do I fix this?



Here's the step by step instruction how I installed SAMBA. Kindly check if I'm missing something.





  1. Check if SAMBA is already installed using the command below :
    $ rpm -q samba


  2. If SAMBA is not yet installed. Type the command shown below to have a root access $ su –


  3. Then you will be asked to type in your password.


  4. Download and install the Linux SAMBA package using the command :
    yum install samba


  5. Configure the Linux Firewall so that it will allow the SAMBA traffic by following the steps below.
    a. Click the System >> Administration > Security Level and Firewall
    b. Type the root password> in the textbox provided
    c. In “Firewall Options” tab, Check the SAMBA > Combo box.
    d. Apply and press ok.



  6. Configure the SAMBA config file. In the terminal, you should have a root access, (do as told in number 2) and type in the command below.



    gedit /etc/samba/smb.conf


this will open the smb.conf and it is ready for any modification.



Spot the part of the config file which contains workgroup. Edit that
part, change the value to “workgroup”



 workgroup = workgroup


And add this section
[NetApps]



path = /data/network-applications 
writeable = yes
browseable = yes
valid users = administrator Save all the changes.


  1. Create a SAMBA user
    a. You must gain root privileges by doing the command in number 2.
    b. Add administrator as a user smbpasswd -a > administrator

    c. Then it will ask you to type the password for that > account.
    d. To know if you have any error with the configuration, use > this command Testparm


  2. Start SAMBA and NetBios Service
    a. To start the SAMBA and NetBios Service /etc/init.d/smb stop


  3. Accessing Windows Shares From CentOS
    a. Gain root privileges by doing number 2.
    b. Download and install samba-client $ Yum install > samba-client












share|improve this question













migrated from stackoverflow.com Sep 19 '12 at 18:56


This question came from our site for professional and enthusiast programmers.


















  • Please let me know your farewell is Enable/Disable if Enable then configure your farewell via command line "iptables" or " system-config-farewell" use any method..

    – user165888
    Mar 22 '13 at 5:40






  • 1





    Actually you should check L3 connectivity via commands like ping|traceroute and L4 connectivity with telnet and tcpdump.

    – Navern
    May 24 '15 at 19:56

















0















I am using CentOS and I need to connect to a file server running on windows. My friend told me that I need to install SAMBA to be able to do that. and so I installed samba and when I try to check if the installation is successful, this command




smbclient //[hostname]/[sharename] -U [username]




gave me this




timeout connecting to XXX.XXX.XXX.XXX:XXX
Error Connecting to XXX.XXX.XXX.XXX (No route to host)
Connection to XXX.XXX.XXX.XXX failed (Error NT_STATUS_HOST_UNREACHABLE)




How do I fix this?



Here's the step by step instruction how I installed SAMBA. Kindly check if I'm missing something.





  1. Check if SAMBA is already installed using the command below :
    $ rpm -q samba


  2. If SAMBA is not yet installed. Type the command shown below to have a root access $ su –


  3. Then you will be asked to type in your password.


  4. Download and install the Linux SAMBA package using the command :
    yum install samba


  5. Configure the Linux Firewall so that it will allow the SAMBA traffic by following the steps below.
    a. Click the System >> Administration > Security Level and Firewall
    b. Type the root password> in the textbox provided
    c. In “Firewall Options” tab, Check the SAMBA > Combo box.
    d. Apply and press ok.



  6. Configure the SAMBA config file. In the terminal, you should have a root access, (do as told in number 2) and type in the command below.



    gedit /etc/samba/smb.conf


this will open the smb.conf and it is ready for any modification.



Spot the part of the config file which contains workgroup. Edit that
part, change the value to “workgroup”



 workgroup = workgroup


And add this section
[NetApps]



path = /data/network-applications 
writeable = yes
browseable = yes
valid users = administrator Save all the changes.


  1. Create a SAMBA user
    a. You must gain root privileges by doing the command in number 2.
    b. Add administrator as a user smbpasswd -a > administrator

    c. Then it will ask you to type the password for that > account.
    d. To know if you have any error with the configuration, use > this command Testparm


  2. Start SAMBA and NetBios Service
    a. To start the SAMBA and NetBios Service /etc/init.d/smb stop


  3. Accessing Windows Shares From CentOS
    a. Gain root privileges by doing number 2.
    b. Download and install samba-client $ Yum install > samba-client












share|improve this question













migrated from stackoverflow.com Sep 19 '12 at 18:56


This question came from our site for professional and enthusiast programmers.


















  • Please let me know your farewell is Enable/Disable if Enable then configure your farewell via command line "iptables" or " system-config-farewell" use any method..

    – user165888
    Mar 22 '13 at 5:40






  • 1





    Actually you should check L3 connectivity via commands like ping|traceroute and L4 connectivity with telnet and tcpdump.

    – Navern
    May 24 '15 at 19:56













0












0








0


1






I am using CentOS and I need to connect to a file server running on windows. My friend told me that I need to install SAMBA to be able to do that. and so I installed samba and when I try to check if the installation is successful, this command




smbclient //[hostname]/[sharename] -U [username]




gave me this




timeout connecting to XXX.XXX.XXX.XXX:XXX
Error Connecting to XXX.XXX.XXX.XXX (No route to host)
Connection to XXX.XXX.XXX.XXX failed (Error NT_STATUS_HOST_UNREACHABLE)




How do I fix this?



Here's the step by step instruction how I installed SAMBA. Kindly check if I'm missing something.





  1. Check if SAMBA is already installed using the command below :
    $ rpm -q samba


  2. If SAMBA is not yet installed. Type the command shown below to have a root access $ su –


  3. Then you will be asked to type in your password.


  4. Download and install the Linux SAMBA package using the command :
    yum install samba


  5. Configure the Linux Firewall so that it will allow the SAMBA traffic by following the steps below.
    a. Click the System >> Administration > Security Level and Firewall
    b. Type the root password> in the textbox provided
    c. In “Firewall Options” tab, Check the SAMBA > Combo box.
    d. Apply and press ok.



  6. Configure the SAMBA config file. In the terminal, you should have a root access, (do as told in number 2) and type in the command below.



    gedit /etc/samba/smb.conf


this will open the smb.conf and it is ready for any modification.



Spot the part of the config file which contains workgroup. Edit that
part, change the value to “workgroup”



 workgroup = workgroup


And add this section
[NetApps]



path = /data/network-applications 
writeable = yes
browseable = yes
valid users = administrator Save all the changes.


  1. Create a SAMBA user
    a. You must gain root privileges by doing the command in number 2.
    b. Add administrator as a user smbpasswd -a > administrator

    c. Then it will ask you to type the password for that > account.
    d. To know if you have any error with the configuration, use > this command Testparm


  2. Start SAMBA and NetBios Service
    a. To start the SAMBA and NetBios Service /etc/init.d/smb stop


  3. Accessing Windows Shares From CentOS
    a. Gain root privileges by doing number 2.
    b. Download and install samba-client $ Yum install > samba-client












share|improve this question














I am using CentOS and I need to connect to a file server running on windows. My friend told me that I need to install SAMBA to be able to do that. and so I installed samba and when I try to check if the installation is successful, this command




smbclient //[hostname]/[sharename] -U [username]




gave me this




timeout connecting to XXX.XXX.XXX.XXX:XXX
Error Connecting to XXX.XXX.XXX.XXX (No route to host)
Connection to XXX.XXX.XXX.XXX failed (Error NT_STATUS_HOST_UNREACHABLE)




How do I fix this?



Here's the step by step instruction how I installed SAMBA. Kindly check if I'm missing something.





  1. Check if SAMBA is already installed using the command below :
    $ rpm -q samba


  2. If SAMBA is not yet installed. Type the command shown below to have a root access $ su –


  3. Then you will be asked to type in your password.


  4. Download and install the Linux SAMBA package using the command :
    yum install samba


  5. Configure the Linux Firewall so that it will allow the SAMBA traffic by following the steps below.
    a. Click the System >> Administration > Security Level and Firewall
    b. Type the root password> in the textbox provided
    c. In “Firewall Options” tab, Check the SAMBA > Combo box.
    d. Apply and press ok.



  6. Configure the SAMBA config file. In the terminal, you should have a root access, (do as told in number 2) and type in the command below.



    gedit /etc/samba/smb.conf


this will open the smb.conf and it is ready for any modification.



Spot the part of the config file which contains workgroup. Edit that
part, change the value to “workgroup”



 workgroup = workgroup


And add this section
[NetApps]



path = /data/network-applications 
writeable = yes
browseable = yes
valid users = administrator Save all the changes.


  1. Create a SAMBA user
    a. You must gain root privileges by doing the command in number 2.
    b. Add administrator as a user smbpasswd -a > administrator

    c. Then it will ask you to type the password for that > account.
    d. To know if you have any error with the configuration, use > this command Testparm


  2. Start SAMBA and NetBios Service
    a. To start the SAMBA and NetBios Service /etc/init.d/smb stop


  3. Accessing Windows Shares From CentOS
    a. Gain root privileges by doing number 2.
    b. Download and install samba-client $ Yum install > samba-client









centos samba file-server






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Sep 19 '12 at 10:45







srh snl











migrated from stackoverflow.com Sep 19 '12 at 18:56


This question came from our site for professional and enthusiast programmers.









migrated from stackoverflow.com Sep 19 '12 at 18:56


This question came from our site for professional and enthusiast programmers.














  • Please let me know your farewell is Enable/Disable if Enable then configure your farewell via command line "iptables" or " system-config-farewell" use any method..

    – user165888
    Mar 22 '13 at 5:40






  • 1





    Actually you should check L3 connectivity via commands like ping|traceroute and L4 connectivity with telnet and tcpdump.

    – Navern
    May 24 '15 at 19:56

















  • Please let me know your farewell is Enable/Disable if Enable then configure your farewell via command line "iptables" or " system-config-farewell" use any method..

    – user165888
    Mar 22 '13 at 5:40






  • 1





    Actually you should check L3 connectivity via commands like ping|traceroute and L4 connectivity with telnet and tcpdump.

    – Navern
    May 24 '15 at 19:56
















Please let me know your farewell is Enable/Disable if Enable then configure your farewell via command line "iptables" or " system-config-farewell" use any method..

– user165888
Mar 22 '13 at 5:40





Please let me know your farewell is Enable/Disable if Enable then configure your farewell via command line "iptables" or " system-config-farewell" use any method..

– user165888
Mar 22 '13 at 5:40




1




1





Actually you should check L3 connectivity via commands like ping|traceroute and L4 connectivity with telnet and tcpdump.

– Navern
May 24 '15 at 19:56





Actually you should check L3 connectivity via commands like ping|traceroute and L4 connectivity with telnet and tcpdump.

– Navern
May 24 '15 at 19:56










1 Answer
1






active

oldest

votes


















0














I'm writing this from the samba server's perspective.



If you don't have access to a gui or prefer to do things in the command line you can replace step 5 with:



First, work out which ports samba is listening on. This can be done with this command:



netstat -tulpn | egrep "samba|smbd|nmbd|winbind"



You'll see something like this:



tcp 0 0 127.0.0.1:139 0.0.0.0:* LISTEN 43270/smbd

tcp 0 0 10.0.0.1:139 0.0.0.0:* LISTEN 43270/smbd

tcp 0 0 10.0.0.1:88 0.0.0.0:* LISTEN 43273/samba

tcp 0 0 127.0.0.1:88 0.0.0.0:* LISTEN 43273/samba

tcp 0 0 127.0.0.1:445 0.0.0.0:* LISTEN 43270/smbd

tcp 0 0 10.0.0.1:445 0.0.0.0:* LISTEN 43270/smbd



The above example shows, that the services are listening on localhost (127.0.0.1) and the interface with IP 10.0.0.1 - each on the listed ports (139, 88, 445, and so on). Further information about samba port usage can be found here: https://wiki.samba.org/index.php/Samba_port_usage



Make a note of port and associated tcp/udp, then add lines that open these ports and protocols in /etc/sysconfig/iptables (it's probably a good plan to back up iptables before editing).



If we take the top line of output from the example above, we'd want to open TCP port 139 in iptables. This can be done by adding the following line of text to /etc/sysconfig/iptables:



-A INPUT -m state --state NEW -m tcp -p tcp --dport 139 -j ACCEPT



Say if you wanted to open UDP port 137 you could do it by adding the following line of text to /etc/sysconfig/iptables



-A INPUT -m state --state NEW -m udp -p ucp --dport 137 -j ACCEPT



You'd need to keep adding lines for any other ports that you need to have open.



Then save your changes, and restart IPtables (service iptables restart).



Hope that helps.






share|improve this answer























    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "2"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f429991%2fhow-to-solve-nt-status-host-unreachable-in-centos-when-connecting-to-windows-f%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown
























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    I'm writing this from the samba server's perspective.



    If you don't have access to a gui or prefer to do things in the command line you can replace step 5 with:



    First, work out which ports samba is listening on. This can be done with this command:



    netstat -tulpn | egrep "samba|smbd|nmbd|winbind"



    You'll see something like this:



    tcp 0 0 127.0.0.1:139 0.0.0.0:* LISTEN 43270/smbd

    tcp 0 0 10.0.0.1:139 0.0.0.0:* LISTEN 43270/smbd

    tcp 0 0 10.0.0.1:88 0.0.0.0:* LISTEN 43273/samba

    tcp 0 0 127.0.0.1:88 0.0.0.0:* LISTEN 43273/samba

    tcp 0 0 127.0.0.1:445 0.0.0.0:* LISTEN 43270/smbd

    tcp 0 0 10.0.0.1:445 0.0.0.0:* LISTEN 43270/smbd



    The above example shows, that the services are listening on localhost (127.0.0.1) and the interface with IP 10.0.0.1 - each on the listed ports (139, 88, 445, and so on). Further information about samba port usage can be found here: https://wiki.samba.org/index.php/Samba_port_usage



    Make a note of port and associated tcp/udp, then add lines that open these ports and protocols in /etc/sysconfig/iptables (it's probably a good plan to back up iptables before editing).



    If we take the top line of output from the example above, we'd want to open TCP port 139 in iptables. This can be done by adding the following line of text to /etc/sysconfig/iptables:



    -A INPUT -m state --state NEW -m tcp -p tcp --dport 139 -j ACCEPT



    Say if you wanted to open UDP port 137 you could do it by adding the following line of text to /etc/sysconfig/iptables



    -A INPUT -m state --state NEW -m udp -p ucp --dport 137 -j ACCEPT



    You'd need to keep adding lines for any other ports that you need to have open.



    Then save your changes, and restart IPtables (service iptables restart).



    Hope that helps.






    share|improve this answer



























      0














      I'm writing this from the samba server's perspective.



      If you don't have access to a gui or prefer to do things in the command line you can replace step 5 with:



      First, work out which ports samba is listening on. This can be done with this command:



      netstat -tulpn | egrep "samba|smbd|nmbd|winbind"



      You'll see something like this:



      tcp 0 0 127.0.0.1:139 0.0.0.0:* LISTEN 43270/smbd

      tcp 0 0 10.0.0.1:139 0.0.0.0:* LISTEN 43270/smbd

      tcp 0 0 10.0.0.1:88 0.0.0.0:* LISTEN 43273/samba

      tcp 0 0 127.0.0.1:88 0.0.0.0:* LISTEN 43273/samba

      tcp 0 0 127.0.0.1:445 0.0.0.0:* LISTEN 43270/smbd

      tcp 0 0 10.0.0.1:445 0.0.0.0:* LISTEN 43270/smbd



      The above example shows, that the services are listening on localhost (127.0.0.1) and the interface with IP 10.0.0.1 - each on the listed ports (139, 88, 445, and so on). Further information about samba port usage can be found here: https://wiki.samba.org/index.php/Samba_port_usage



      Make a note of port and associated tcp/udp, then add lines that open these ports and protocols in /etc/sysconfig/iptables (it's probably a good plan to back up iptables before editing).



      If we take the top line of output from the example above, we'd want to open TCP port 139 in iptables. This can be done by adding the following line of text to /etc/sysconfig/iptables:



      -A INPUT -m state --state NEW -m tcp -p tcp --dport 139 -j ACCEPT



      Say if you wanted to open UDP port 137 you could do it by adding the following line of text to /etc/sysconfig/iptables



      -A INPUT -m state --state NEW -m udp -p ucp --dport 137 -j ACCEPT



      You'd need to keep adding lines for any other ports that you need to have open.



      Then save your changes, and restart IPtables (service iptables restart).



      Hope that helps.






      share|improve this answer

























        0












        0








        0







        I'm writing this from the samba server's perspective.



        If you don't have access to a gui or prefer to do things in the command line you can replace step 5 with:



        First, work out which ports samba is listening on. This can be done with this command:



        netstat -tulpn | egrep "samba|smbd|nmbd|winbind"



        You'll see something like this:



        tcp 0 0 127.0.0.1:139 0.0.0.0:* LISTEN 43270/smbd

        tcp 0 0 10.0.0.1:139 0.0.0.0:* LISTEN 43270/smbd

        tcp 0 0 10.0.0.1:88 0.0.0.0:* LISTEN 43273/samba

        tcp 0 0 127.0.0.1:88 0.0.0.0:* LISTEN 43273/samba

        tcp 0 0 127.0.0.1:445 0.0.0.0:* LISTEN 43270/smbd

        tcp 0 0 10.0.0.1:445 0.0.0.0:* LISTEN 43270/smbd



        The above example shows, that the services are listening on localhost (127.0.0.1) and the interface with IP 10.0.0.1 - each on the listed ports (139, 88, 445, and so on). Further information about samba port usage can be found here: https://wiki.samba.org/index.php/Samba_port_usage



        Make a note of port and associated tcp/udp, then add lines that open these ports and protocols in /etc/sysconfig/iptables (it's probably a good plan to back up iptables before editing).



        If we take the top line of output from the example above, we'd want to open TCP port 139 in iptables. This can be done by adding the following line of text to /etc/sysconfig/iptables:



        -A INPUT -m state --state NEW -m tcp -p tcp --dport 139 -j ACCEPT



        Say if you wanted to open UDP port 137 you could do it by adding the following line of text to /etc/sysconfig/iptables



        -A INPUT -m state --state NEW -m udp -p ucp --dport 137 -j ACCEPT



        You'd need to keep adding lines for any other ports that you need to have open.



        Then save your changes, and restart IPtables (service iptables restart).



        Hope that helps.






        share|improve this answer













        I'm writing this from the samba server's perspective.



        If you don't have access to a gui or prefer to do things in the command line you can replace step 5 with:



        First, work out which ports samba is listening on. This can be done with this command:



        netstat -tulpn | egrep "samba|smbd|nmbd|winbind"



        You'll see something like this:



        tcp 0 0 127.0.0.1:139 0.0.0.0:* LISTEN 43270/smbd

        tcp 0 0 10.0.0.1:139 0.0.0.0:* LISTEN 43270/smbd

        tcp 0 0 10.0.0.1:88 0.0.0.0:* LISTEN 43273/samba

        tcp 0 0 127.0.0.1:88 0.0.0.0:* LISTEN 43273/samba

        tcp 0 0 127.0.0.1:445 0.0.0.0:* LISTEN 43270/smbd

        tcp 0 0 10.0.0.1:445 0.0.0.0:* LISTEN 43270/smbd



        The above example shows, that the services are listening on localhost (127.0.0.1) and the interface with IP 10.0.0.1 - each on the listed ports (139, 88, 445, and so on). Further information about samba port usage can be found here: https://wiki.samba.org/index.php/Samba_port_usage



        Make a note of port and associated tcp/udp, then add lines that open these ports and protocols in /etc/sysconfig/iptables (it's probably a good plan to back up iptables before editing).



        If we take the top line of output from the example above, we'd want to open TCP port 139 in iptables. This can be done by adding the following line of text to /etc/sysconfig/iptables:



        -A INPUT -m state --state NEW -m tcp -p tcp --dport 139 -j ACCEPT



        Say if you wanted to open UDP port 137 you could do it by adding the following line of text to /etc/sysconfig/iptables



        -A INPUT -m state --state NEW -m udp -p ucp --dport 137 -j ACCEPT



        You'd need to keep adding lines for any other ports that you need to have open.



        Then save your changes, and restart IPtables (service iptables restart).



        Hope that helps.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Oct 17 '14 at 11:17









        RalphRalph

        1




        1



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Server Fault!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f429991%2fhow-to-solve-nt-status-host-unreachable-in-centos-when-connecting-to-windows-f%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Club Baloncesto Breogán Índice Historia | Pavillón | Nome | O Breogán na cultura popular | Xogadores | Adestradores | Presidentes | Palmarés | Historial | Líderes | Notas | Véxase tamén | Menú de navegacióncbbreogan.galCadroGuía oficial da ACB 2009-10, páxina 201Guía oficial ACB 1992, páxina 183. Editorial DB.É de 6.500 espectadores sentados axeitándose á última normativa"Estudiantes Junior, entre as mellores canteiras"o orixinalHemeroteca El Mundo Deportivo, 16 setembro de 1970, páxina 12Historia do BreogánAlfredo Pérez, o último canoneiroHistoria C.B. BreogánHemeroteca de El Mundo DeportivoJimmy Wright, norteamericano do Breogán deixará Lugo por ameazas de morteResultados de Breogán en 1986-87Resultados de Breogán en 1990-91Ficha de Velimir Perasović en acb.comResultados de Breogán en 1994-95Breogán arrasa al Barça. "El Mundo Deportivo", 27 de setembro de 1999, páxina 58CB Breogán - FC BarcelonaA FEB invita a participar nunha nova Liga EuropeaCharlie Bell na prensa estatalMáximos anotadores 2005Tempada 2005-06 : Tódolos Xogadores da Xornada""Non quero pensar nunha man negra, mais pregúntome que está a pasar""o orixinalRaúl López, orgulloso dos xogadores, presume da boa saúde económica do BreogánJulio González confirma que cesa como presidente del BreogánHomenaxe a Lisardo GómezA tempada do rexurdimento celesteEntrevista a Lisardo GómezEl COB dinamita el Pazo para forzar el quinto (69-73)Cafés Candelas, patrocinador del CB Breogán"Suso Lázare, novo presidente do Breogán"o orixinalCafés Candelas Breogán firma el mayor triunfo de la historiaEl Breogán realizará 17 homenajes por su cincuenta aniversario"O Breogán honra ao seu fundador e primeiro presidente"o orixinalMiguel Giao recibiu a homenaxe do PazoHomenaxe aos primeiros gladiadores celestesO home que nos amosa como ver o Breo co corazónTita Franco será homenaxeada polos #50anosdeBreoJulio Vila recibirá unha homenaxe in memoriam polos #50anosdeBreo"O Breogán homenaxeará aos seus aboados máis veteráns"Pechada ovación a «Capi» Sanmartín e Ricardo «Corazón de González»Homenaxe por décadas de informaciónPaco García volve ao Pazo con motivo do 50 aniversario"Resultados y clasificaciones""O Cafés Candelas Breogán, campión da Copa Princesa""O Cafés Candelas Breogán, equipo ACB"C.B. Breogán"Proxecto social"o orixinal"Centros asociados"o orixinalFicha en imdb.comMario Camus trata la recuperación del amor en 'La vieja música', su última película"Páxina web oficial""Club Baloncesto Breogán""C. B. Breogán S.A.D."eehttp://www.fegaba.com

            Vilaño, A Laracha Índice Patrimonio | Lugares e parroquias | Véxase tamén | Menú de navegación43°14′52″N 8°36′03″O / 43.24775, -8.60070

            Cegueira Índice Epidemioloxía | Deficiencia visual | Tipos de cegueira | Principais causas de cegueira | Tratamento | Técnicas de adaptación e axudas | Vida dos cegos | Primeiros auxilios | Crenzas respecto das persoas cegas | Crenzas das persoas cegas | O neno deficiente visual | Aspectos psicolóxicos da cegueira | Notas | Véxase tamén | Menú de navegación54.054.154.436928256blindnessDicionario da Real Academia GalegaPortal das Palabras"International Standards: Visual Standards — Aspects and Ranges of Vision Loss with Emphasis on Population Surveys.""Visual impairment and blindness""Presentan un plan para previr a cegueira"o orixinalACCDV Associació Catalana de Cecs i Disminuïts Visuals - PMFTrachoma"Effect of gene therapy on visual function in Leber's congenital amaurosis"1844137110.1056/NEJMoa0802268Cans guía - os mellores amigos dos cegosArquivadoEscola de cans guía para cegos en Mortágua, PortugalArquivado"Tecnología para ciegos y deficientes visuales. Recopilación de recursos gratuitos en la Red""Colorino""‘COL.diesis’, escuchar los sonidos del color""COL.diesis: Transforming Colour into Melody and Implementing the Result in a Colour Sensor Device"o orixinal"Sistema de desarrollo de sinestesia color-sonido para invidentes utilizando un protocolo de audio""Enseñanza táctil - geometría y color. Juegos didácticos para niños ciegos y videntes""Sistema Constanz"L'ocupació laboral dels cecs a l'Estat espanyol està pràcticament equiparada a la de les persones amb visió, entrevista amb Pedro ZuritaONCE (Organización Nacional de Cegos de España)Prevención da cegueiraDescrición de deficiencias visuais (Disc@pnet)Braillín, un boneco atractivo para calquera neno, con ou sen discapacidade, que permite familiarizarse co sistema de escritura e lectura brailleAxudas Técnicas36838ID00897494007150-90057129528256DOID:1432HP:0000618D001766C10.597.751.941.162C97109C0155020