Changes between Version 4 and Version 5 of noc2018/agenda/PfsenseBasics
- Timestamp:
- Dec 4, 2018, 1:23:14 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
noc2018/agenda/PfsenseBasics
v4 v5 177 177 Please double check your vm network connections before powering on them. If all settings are satisfying, power on both Virtual Machines. 178 178 179 180 From your GUI vm browse to !http://<pfSense-LAN-address> 179 On your Server vm log in and edit ip configuration `sudo nano /etc/netplan/50-cloud-init.yaml` 180 181 **Change** IP addresses to match your addresses 182 183 {{{ 184 network: 185 ethernets: 186 enp0s3: 187 addresses: [10.XY.1.1/24, '2401:dd00:2009::10/64'] 188 dhcp4: no 189 dhcp6: no 190 gateway4: 10.XY.1.254 191 gateway6: 2401:dd00:2009::ffff 192 nameservers: 193 addresses: [10.XY.1.254, '2401:dd00:2009::ffff'] 194 version: 2 195 }}} 196 197 And restart the server. 198 199 Noe log in to your GUI and from your GUI vm browse to !http://<pfSense-LAN-address> 181 200 182 201 Default admin / pass are admin / pfsense … … 240 259 - Theme: Changes the look and feel of the pfSense GUI, but not the functionality 241 260 242 243 244 245 246 247 261 === Only for the LAB === 262 263 go to Firewall > Rules > WAN > Add to end 264 265 - Action: pass 266 - Interface: WAN 267 - Address Family: IPv4 268 - Protocol: TCP 269 - Source: Network : 192.248.4.0/22 270 - Destination: WAN address 271 - Destination Port: Any, Any 272 - Log: ticked 273 - Description: Allow pfsense access from lab 274 275 Save and Apply Changes 276 277 278 279 280 281