Changes between Version 2 and Version 3 of ServBelmez


Ignore:
Timestamp:
Apr 21, 2025, 9:52:26 AM (3 weeks ago)
Author:
i22balur
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ServBelmez

    v2 v3  
    33
    44- '''Sistema Operativo''': Rocky Linux 9.5 (Blue Onyx) [[BR]]
     5- '''CPU''': 2x Procesador Intel® Xeon® E5-2680
     6- '''RAM''': 64 GB
     7
     8
     9== Conectividad ==
     10
     11- '''Hostname''': belmezhpe01
    512- '''FQDN''': belmezhpe01.priv.uco.es
     13- '''Interfaz''' eth0
     14  - '''VLAN''': XXX (Aulas)
     15  - '''Dirección IP''': 172.17.224.251
     16  - '''Mascara de subred''': 255.255.255.0
     17  - '''Gateway''': 172.17.224.254
     18
     19== Servicios ==
     20
     21'''Software instalado:'''
     22
     23{{{#!bash
     24dnf install dhcp-server
     25dnf install tftpd
     26dnf install tftp-server
     27dnf install nfs-utils
     28dnf install nmap
     29dnf install sssd-ldap
     30dnf install tftp-server
     31}}}
     32
     33
     34'''Configuración de NFS'''
     35
     36En el {{{/etc/exports}}}:
     37
     38{{{
     39/TS3            172.17.224.0/255.255.255.0(ro,no_subtree_check) 150.214.110.47(rw,no_subtree_check,no_root_squash)
     40/homes          172.17.224.0/255.255.255.0(rw,no_subtree_check)
     41}}}
     42
     43'''Configuración de TFTP'''
     44
     45En el {{{/etc/systemd/system/tftp-server.service}}}
     46
     47{{{
     48[Unit]
     49Description=Tftp Server
     50Requires=tftp-server.socket
     51Documentation=man:in.tftpd
     52
     53[Service]
     54ExecStart=/usr/sbin/in.tftpd -c -p -s /var/lib/tftpboot
     55StandardInput=socket
     56
     57[Install]
     58Also=tftp.socket
     59}}}