I found it rather frustrating to find a good explanation how to access and mount a network drive on mac machines. Specifically, a remote drive that siting on Windows server. Here is a little cheat sheet.
Mount command
mount -t {filesystem type} {remote location} {local folder}
Example: mount -t cifs smb://180net1/Collab /Volumes/Collab
Do not forget to create folder to mount to Example: mkdir /Volumes/Collab |
Servers without authentication
{connection protocol}://{server name}/{folder}
Example: cifs://180net1/Collab
Servers with authentication
{connection protocol}://{username}:{password}@{server name}/{folder}
Example: cifs://jack:12345@180net1/Collab