Categories
- Answers (12)
- DragonFlyBSD (7)
- FreeBSD (10)
- NetBSD (14)
- Networking (7)
- News (1)
- OpenBSD (8)
- Papers (8)
- pkgsrc (1)
- Programming (1)
- Security (9)
- System Administration (10)
Category Archives: Answers
Q: Why do I get “ERROR: failed to get private key” when trying to establish an IPSec tunnel with racoon (ipsec-tools)?
A: If you are using x509 certificates to authenticate your end-points, it is likely that your private keys are encrypted (assume the private key is named maguro.key) # less maguro.key —–BEGIN RSA PRIVATE KEY—– Proc-Type: 4,ENCRYPTED DEK-Info: DES-EDE3-CBC,94BC2753E921722E BjPpMYZouxEUBSdEtuRrnbcdGaTlmfuIh8RNxuijBU6ZawY1I5hosULrFKzrLzZt FJ9kg9Zo60o7U0FGzI1LTw4UalQnnkgH/quRZ4pJeM20Hjc5m4mj+YDtXAgNXYrw … Continue reading
Q: How do I configure Link Aggregation in NetBSD?
A: Link Aggregation (some vendors refer to this as connection bonding) is simple to configure. NetBSD includes the agr driver which supports the IEEE 802.3ad Link Aggregation Control Protocol. To start, you will need to compile a kernel with the … Continue reading
Posted in Answers, NetBSD, Networking
Leave a comment
Q: How do I use OpenSSL to encrypt files?
A: This depends on if you want symmetric or asymmetric encryption. For symmetic encryption, you can use the following… To encrypt: > openssl aes-256-cbc -salt -a -e -in plaintext.txt -out encrypted.txt To decrypt this, you can use the following. > … Continue reading
Posted in Answers, DragonFlyBSD, FreeBSD, NetBSD, OpenBSD, Security
3 Comments
