Update README.md

This commit is contained in:
Ste Vaidis 2023-07-27 22:29:40 +03:00
parent 2457ac61fb
commit f51863f14f

View File

@ -1,3 +1,46 @@
# OpenBSD-Notes
## Install basic packages
```sh
pkg_add vim
```
## Network Settings
### Static / Dinamic IP Address
:floppy_disk: `vi /etc/hostname.em0`
```bash
dhcp
```
:floppy_disk: `vi /etc/hostname.stge0`
```bash
media 100baseTX
mediaopt full-duplex
inet 192.168.2.1 0xffffff00
```
### Default Gateway
:floppy_disk: `vi /etc/mygate`
```bash
192.168.1.1
```
### DNS
:floppy_disk: `vi /etc/resolv.conf`
```bash
nameserver 9.9.9.9
nameserver 1.1.1.1
```
# Gitea