Centos mounting windows share

Kurgan-Telecom Ru | Информационные технологии

Вход на сайт

Языки

Новые записи в блогах

Активные обсуждения форума

Habr.com

Linux.org.ru

Монтируем Windows-шары в CentOS при помощи cifs

Как известно (или еще неизвестно), начиная с CentOS 5 / RHEL 5, система больше не поддерживает smbfs, на смену этому устаревшему протоколу пришел cifs. Именно с помощью него мы и будем монтировать виндовые шары на ОС CentOS 5.5.
Опишу три метода. Первый самый простой и незамысловатый. Во втором и третьем прибегнем к редактированию fstab. К сожалению все три метода не позволяют скрыть пароль (шифровать) от третьих лиц.

Первый метод. Монтируем шары из консоли. При таком монтировании при перезагрузке сервера, виндовая шара не восстанавливается.

1. Создаем папку куда будем монтировать.
# mkdir /mnt/share

2. Устанавливаем пакет Samba.
# yum install samba samba-client

3. Монтируем шару. (в виндосе должна быть расшарена, и выставлены соответствуюшии права на пользователя).
# mount.cifs //10.0.0.1/share$ /mnt/share -o iocharset=utf8,codepage=cp866,uid=500,gid=500,rw,user=admin%password

где —
//10.0.0.1/share$ – //ip или имя виндовой машины/имя шары
/mnt/share — точка монтирования в Линуксе
iocharset=utf8,codepage=cp866 — кодировка, дабы и там и там были русские символы, вместо кракозябр.
uid=500,gid=500,rw — какой uid и gid будет присвоен нашей подмонтированной шаре, разрешаем чтение/запись.
user=admin%password — имя виндового пользователя и его пароль

Второй метод. Теперь, дабы наша виндовая шара даже после перезагрузки сервера была подмонтирована, добавим запись в fstab.

1. Редактируем fstab
# vi /etc/fstab

Добавляем в конце всех записей строчку:
//10.0.0.1/share$ /mnt/share cifs iocharset=utf8,codepage=cp866,uid=500,gid=500,rw,user=admin%password 0 0
Сохраняем файл и выходим из редактора. Теперь можно не беспокоиться что наша шара не подцепится после перезагрузки.

Третий метод. Теперь сохраним имя пользователя и пароль в отдельном файле, а не в виде записи в fstab.

Как в Linux монтировать шару CIFS

Что такое Linux и CIFS простыми словами.

Работа с общими папками Windows происходит с использованием протокола CIFS (SMB). Все примеры в данном руководстве выполняются на Linux Ubuntu и CentOS.

Подготовка

Установка пакетов

Для монтирования общей папки необходимо установить набор утилит для работы с CIFS.

yum install cifs-utils

apt-get install cifs-utils

Сетевые порты

Если мы будем монтировать сетевую папку, сервер которой находится за брандмауэром, необходимо открыть следующие порты:

Синтаксис

* вместо mount.cifs можно написать mount -t cifs.

mount.cifs //192.168.1.1/public /mnt

* простой пример монтирования папки public на сервере 192.168.1.1 в локальный каталог /mnt.

Ручное монтирование

Теперь монтирование можно выполнить следующей командой:

mount.cifs //192.168.1.10/share /mnt -o user=dmosk

* в данном примере будет примонтирован каталог share на сервере 192.168.1.10 в локальную папку /mnt под учетной записью dmosk.

То же самое, с использованием домена:

Читайте также:  Изменить порядок загрузки операционной системы linux

mount.cifs //192.168.1.10/share /mnt -o user=dmosk,domain=dmosk.local

Автоматическое монтирование CIFS через fstab

Для начала создаем файл, в котором будем хранить данные авторизации при подключении к общей папке:

И добавляем в него данные следующего вида:

username=dmosk
password=dPassw0rd
domain=dmosk.local

* в этом примере создана пара логин/пароль — dmosk/dPassw0rd; domain указывать не обязательно, если аутентификация выполняется без него.

Теперь открываем конфигурационный файл fstab:

и добавляем в него следующее:

//192.168.1.10/share /mnt cifs user,rw,credentials=/root/.smbclient 0 0

* в данном примере выполняется монтирование общей папки share на сервере с IP-адресом 192.168.1.10 в каталог /mnt. Параметры для подключения — user: позволяет выполнить монтирование любому пользователю, rw: с правом на чтение и запись, credentials: файл, который мы создали на предыдущем шаге.

Чтобы проверить правильность настроек, вводим следующую команду:

Примеры использования опций

Версии SMB

Если на стороне Windows используется старая или слишком новая версия протокола SMB, при попытке монтирования мы можем получить ошибку mount error(112): Host is down. Чтобы это исправить, указываем версию:

mount.cifs //192.168.1.10/share /mnt/ -o vers=1.0

* монтирование по протоколу SMB1.0

Монтирование от гостевой учетной записи

Если сервер принимает запросы без логина и пароля, то клиент подключается, как гость:

mount.cifs //192.168.1.10/share /mnt -o guest

//192.168.1.10/share /mnt cifs guest 0 0

Права на примонтированные каталоги

При монтировании папки мы можем указать определенные права:

mount remote windows share from centos

I am trying to setup a script that will:

  1. Connect to a windows share
  2. Using LOAD DATA LOCAL INFILE, upload the two files into their appropriate db tables
  3. Umount share

Situation:
I can currently vpnc into this remote machine

Problem:
I cannot

I am attempting to do this manually first
Remote server is open to port 445

  1. Do I even need to vpnc in first?
  2. Do I need to do route add for the remote ip/mask/gw after vpnc?

2 Answers 2

The mount.cifs file is provided by the samba-client package. This can be installed from the standard CentOS yum repository by running the following command:

Once installed, you can mount a Windows SMB share on your CentOS server by running the following command:

Syntax:

SERVER_ADDRESS: Windows system’s IP address or hostname

SHARE_NAME: The name of the shared folder configured on the Windows system

USERNAME: Windows user that has access to this share

MOUNT_POINT: The local mount point on your CentOS server

I am mounting to a share from \\10.11.10.26\snaps

Make a directory under mount for your reference

Now I am mounting the snaps folder from indiafps02, User name is the Domain credentials, i.e. Mydomain in this case

Now you could see the content by typing

So, after performing your task, just fire umount command

How to Mount SMB Shares on CentOS 7

Overview

In this tutorial, you will learn how to mount SMB shares on CentOS 7. You will be guided through the process for both desktop and server installations of the operating system.

CentOS provides support for mounting Microsoft CIFS or SMB shares. Not just limited to shares hosted from Microsoft Windows, we can also mount shares from any network device that uses the SMB protocol. This includes just about any NAS device on the market.

If you understand how to mount SMB shares on earlier versions of Red Hat Enterprise Linux or CentOS, the instructions are identical.

Читайте также:  Разделяемая память это linux

Share Configuration

For this tutorial, I prepared a share named Core Library on a Windows Server 2012 R2 server that is a member of an Active Directory domain.

TABLE1Windows File Server

Hostname Operating System Share Path SMB Version
WS12FS01 Windows Server 2012 R2 \\WS12FS01\libraries\core 2.0

For the share permission on WS12FS01, we grant Full Control to Everyone. Don’t be fooled into thinking this is insecure. Although everyone has access to the share, the NTFS permissions on the volume hosting the share overrule the share permissions. By leaving Everyone and granting full control, we save our selves work by only having to manage permissions on the file system itself.

FIG1Windows Share Permissions

For the NTFS permissions, we created an Active Directory account named _share_library_core and granted it Modify, Read & Execute, List folder contents, Read, and Write. The account will be used when we mount the share onto CentOS 7.

FIG2NTFS Share Permissions

We use an Active Directory account in this tutorial as an example of how someone would accomplish this in an enterprise environment.

However, an Active Directory account is not required. As long as the CentOS server has an account that can authenticate successfully on the host publishing the share, it doesn’t matter where the account actually exists – in Active Directory or locally on the file server itself.

Preparing CentOS 7 for Mounting SMB Shares

A default CentOS 7 build will not be able to mount SMB\CIFS shares, unless you customized the install. We’ll need to install a package onto the server that allows it to understand the SMB protocol.

  1. Install the cifs-utils package from the default CentOS yum repository.
  2. Next, we need an account on the CentOS server that will map to the Windows account granted permission to the SMB share, _share_library_core. We’ll create a service account named svc_library_core with a user id (UID) of 5000.
  3. We also want a group on the CentOS server that will map to the share. This group will contain all of the Linux accounts that will need access to the share. Our account will be called share_library_core and it will have a group id (gid) of 6000.
  4. Finally, add any Linux accounts that require access to the SMB share to the newly created Linux group. I have an existing account named user1 that I will add to the share_library_core group.

Mounting an SMB Share

We are now ready to mount our SMB share. In the example below, we temporarily mount the SMB share onto our CentOS server. The share will remain mounted until the server is rebooted.

  1. Create a directory to mount the SMB share into. We’ll mount the share in a directory called lib_core.
  2. Using the mount.cifs command, mount the SMB share into lib_core using the Active Directory user account _share_library_core. We need to map the UID of our svc_library_core account (5000) and the gid of our share_library_core group (6000) to the SMB share.

The extra backslashes (\) are not typos. Backslashes are used to escape certain characters. Because of this, we have to double up on them when accessing Microsoft shares.

  • If no errors appeared, the share should successfully be mounted. The verify this, use the df command or the mount.
  • Hiding SMB USer Credentials

    In the example above, we’re forced to enter the username and password into the command-line. This is a major security issue, as someone could browse your bash history to obtain the credentials, or they can see them while you type them in. Thankfully, there’s a way to address this problem by using a credentials file.

    1. If not Root, SU into the Root account.
    2. Create a credentials file in Root’s home directory. I typically create this file in a sub-directory in Root’s home, for organizational reasons. But for this example, I will place it in /root.
    3. Modify the file’s permissions so that only the Root account is granted read permissions. No groups or other users should have access to the file.
    4. Open the file in a text editor. I like using VI, but you can use whichever you prefer.
    5. Add the following lines to the file. Remember to replace the username and password values so that they match your environment.
      TABLE2 – Credential file options
      username The Windows or Active Directory username granted permissions to the share on the Windows file server.
      password The password given to the username
    6. Save your changes to the credential file and exit the text editor.
    7. Mount the SMB share. However, instead of using the user and pass options, we instead use the credentials option and point to our credentials file.

    Persistent SMB Mounts using FSTAB

    The downfall of the examples above is that the mounts are only temporary – the will not remount at system boot. The make the mount permanent we need to add it the fstab.

    1. Open /etc/fstab into a text editor.
    2. Add the following line to your fstab. Remember to replace the values with those that match your environment.
    3. Save your changes and exit the text editor.
    4. The SMB share will mount the next time the CentOS server is rebooted. To mount the share immediately, use the mount command.

    How to Mount a Windows Shared Folder in Linux CentOS 6.3

    In this post, i will share on how to mount windows share folder on linux CentOS 6.3 server. Assumed that windows share folder has been configured properly with administrator privileged. This uses Common Internet File System (CIFS) protocol. CIFS can lets you access to shared folder and files that are remotely on the server and can do read and write to them.

    1. Execute the following command to mount Windows share folder :

    2. Verify that Windows share folder already mounted to /mnt :

    3. Add that Windows share folder into /etc/fstab file, so that it will auto mount once rebooted :

    Add the final line as below :

    Question : How to mount CDROM/DVDROM media on linux CentOS server ? Solution : In…

    What is the correct way to reboot a CentOS/RHEL Linux server? I would recommend to…

    In this post, i will share on how to install GNOME Desktop on Linux CentOS…

    Most system administrators have applied linux login banner on their servers. The purpose of this…

    What is the correct way to turn off a CentOS/RHEL Linux server? I would recommend…

    Читайте также:  Oceans red the secret windows
    Оцените статью