PHANTOM
🇮🇳 IN
Skip to content
View Nisamov's full-sized avatar
Linux Commands
Linux Commands

Sponsoring

@yyx990803

Organizations

@nisaorg @nisadir

Block or report Nisamov

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Nisamov/README.md

Imagen Titulo

Listado Proyecto (click para ir)
LinuxCommands LinuxCommands
RouterSwitchCommands RouterSwitchCommands

LinkedIn - Nisamov

Pinned Loading

  1. LinuxCommands LinuxCommands Public

    🔵 Linux Commands es un repositorio creado para servir como guía y apoyo a usuarios o administradores de sistemas Linux

    Shell 29 9

  2. RouterSwitchCommands RouterSwitchCommands Public

    🟢 RouterCommands es un repositorio creado para servir como guía y apoyo a administradores de redes

    20

  3. ssp ssp Public

    Secure Service Protocol | Protect yourself from potentially unsafe services.

    Shell 14

  4. nerve nerve Public

    Docker Packages

    Dockerfile 16

  5. DHCP Failover Configuration | File 1... DHCP Failover Configuration | File 1 (this points another DHCP server to work with "192.168.1.3" at port "647" | Ubuntu Server Configuration
    1
    # File Location /etc/dhcp/dhcpd.conf
    2
    failover peer "dhcp-failover" {
    3
        primary;
    4
        address 192.168.1.2;
    5
        port 647;
  6. SQL Example Database | Basic Databas... SQL Example Database | Basic Database Sample
    1
    create database if not exists projects;
    2
    use projects;
    3
    create table asimpleproject (
    4
        id int unsigned not null,
    5
        author varchar(15) not null,