How to create post in WP network using WP-CLI

You can try the --url argument to target a given site in your network:

wp post create \
   --post_type=page \ 
   --post_title="ABC" \
   --post_status=publish \
   --url=http://example.tld/somesite/

where you can view available site urls with

wp site list